Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6a85ced2 authored by Felipe Balbi's avatar Felipe Balbi Committed by Wolfram Sang
Browse files

i2c: omap: always return IRQ_HANDLED



Always return IRQ_HANDLED otherwise we could get our IRQ line disabled due
to many spurious IRQs.

Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
[Trivial changes to commitlogs]
Signed-off-by: default avatarShubhrajyoti D <shubhrajyoti@ti.com>
Signed-off-by: default avatarWolfram Sang <w.sang@pengutronix.de>
parent 3ff4443f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -962,7 +962,7 @@ complete:
		}
	} while (stat);

	return count ? IRQ_HANDLED : IRQ_NONE;
	return IRQ_HANDLED;
}

static const struct i2c_algorithm omap_i2c_algo = {