rusefi 2019-06-08 00:44:18 -04:00
parent 8613ec5c19
commit 061e7c6bf0
1 changed files with 5 additions and 5 deletions

View File

@ -244,17 +244,17 @@ static int tle8888_wake_driver(struct tle8888_priv *chip)
{ {
(void)chip; (void)chip;
if (isIsrContext()) { // if (isIsrContext()) {
// this is for normal runtime // this is for normal runtime
int wasLocked = lockAnyContext(); int wasLocked = lockAnyContext();
chSemSignalI(&tle8888_wake); chSemSignalI(&tle8888_wake);
if (!wasLocked) { if (!wasLocked) {
unlockAnyContext(); unlockAnyContext();
} }
} else { // } else {
// this is for start-up to not hang up // // this is for start-up to not hang up
chSemSignal(&tle8888_wake); // chSemSignal(&tle8888_wake);
} // }
return 0; return 0;
} }