Browse Source

touch: pineapple: Replacing disable_irq with disable_irq_nosync

disable_irq ensures existing instances of the IRQ handler have
completed before returning which may create a deadlock if the handler
doesn't find the resource.

Change-Id: I7010d2a415f97de5ece8119b855c169ffba665b7
Signed-off-by: Simranjeet Thind <[email protected]>
Simranjeet Thind 2 years ago
parent
commit
69fec10e97
1 changed files with 2 additions and 2 deletions
  1. 2 2
      goodix_berlin_driver/goodix_brl_hw.c

+ 2 - 2
goodix_berlin_driver/goodix_brl_hw.c

@@ -348,11 +348,11 @@ static int brl_irq_enbale(struct goodix_ts_core *cd, bool enable)
 	}
 
 	if (!enable && atomic_cmpxchg(&cd->irq_enabled, 1, 0)) {
-		disable_irq(cd->irq);
+		disable_irq_nosync(cd->irq);
 		ts_debug("Irq disabled");
 		return 0;
 	}
-	ts_info("warnning: irq deepth inbalance!");
+	ts_info("warning: irq depth imbalance!");
 	return 0;
 }