Commit e0d8678c authored by Haibo Chen's avatar Haibo Chen Committed by Shawn Guo
Browse files

arm64: dts: imx8qm-mek: correct the light sensor interrupt type to low level



light sensor isl29023 share the interrupt with lsm303arg, but these
two devices use different interrupt type. According to the datasheet
of these two devides, both support low level trigger type, so correct
the interrupt type here to avoid the following error log:

  irq: type mismatch, failed to map hwirq-11 for gpio@5d0c0000!

Fixes: 9918092c ("arm64: dts: imx8qm-mek: add i2c0 and children devices")
Fixes: 1d8a9f04 ("arm64: dts: imx8: use defines for interrupts")
Signed-off-by: default avatarHaibo Chen <haibo.chen@nxp.com>
Reviewed-by: default avatarFrank Li <Frank.Li@nxp.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 1a8e81a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -576,7 +576,7 @@ light-sensor@44 {
		compatible = "isil,isl29023";
		reg = <0x44>;
		interrupt-parent = <&lsio_gpio4>;
		interrupts = <11 IRQ_TYPE_EDGE_FALLING>;
		interrupts = <11 IRQ_TYPE_LEVEL_LOW>;
	};

	pressure-sensor@60 {