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;
if (isIsrContext()) {
// if (isIsrContext()) {
// this is for normal runtime
int wasLocked = lockAnyContext();
chSemSignalI(&tle8888_wake);
if (!wasLocked) {
unlockAnyContext();
}
} else {
// this is for start-up to not hang up
chSemSignal(&tle8888_wake);
}
// } else {
// // this is for start-up to not hang up
// chSemSignal(&tle8888_wake);
// }
return 0;
}