diff options
author | Tony Lindgren <tony@atomide.com> | 2017-12-04 08:27:17 -0800 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2017-12-05 08:29:01 -0800 |
commit | d364b038bc962f494cffb8f6cb6cddbe41bcb5b6 (patch) | |
tree | ac124a6cc44bad2e2e12124a2552d37747cdf21e /arch | |
parent | 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323 (diff) | |
download | linux-d364b038bc962f494cffb8f6cb6cddbe41bcb5b6.tar.gz linux-d364b038bc962f494cffb8f6cb6cddbe41bcb5b6.tar.bz2 linux-d364b038bc962f494cffb8f6cb6cddbe41bcb5b6.zip |
ARM: dts: Fix elm interrupt compiler warning
Looks like the interrupt property is missing the controller and level
information causing:
Warning (interrupts_property): interrupts size is (4), expected multiple
of 12 in /ocp/elm@48078000
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/boot/dts/omap4.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/omap4.dtsi b/arch/arm/boot/dts/omap4.dtsi index 1dc5a76b3c71..22b377d35201 100644 --- a/arch/arm/boot/dts/omap4.dtsi +++ b/arch/arm/boot/dts/omap4.dtsi @@ -398,7 +398,7 @@ elm: elm@48078000 { compatible = "ti,am3352-elm"; reg = <0x48078000 0x2000>; - interrupts = <4>; + interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>; ti,hwmods = "elm"; status = "disabled"; }; |