commit | 3cd795ba59b1fe035510b71ecdeed6733ae834e4 | [log] [tgz] |
---|---|---|
author | Frank Duerr <frank.duerr@ipvs.uni-stuttgart.de> | Sun May 04 12:15:03 2025 +0200 |
committer | Benjamin Cabé <kartben@gmail.com> | Fri May 16 19:00:38 2025 +0200 |
tree | 2a7ea0bc68b08886a618fdb44c9c1fe167ac62af | |
parent | 405ab182a9749501f22df4455f9f2fbc1189adc1 [diff] |
drivers: ethernet: fixed calling mutex from ISR The NXP ENET driver used a mutex inside an ISR. Since mutexes are not allowed in ISR, an assertion had been triggered. The mutex is not required since a semaphore ensures sequential writing (in ISR) and subsequent reading (after eth_wait_for_ptp_ts()). Fixed by removing calls to mutex. Signed-off-by: Frank Duerr <frank.duerr@ipvs.uni-stuttgart.de>