diff options
author | Lee Jones <lee.jones@linaro.org> | 2018-09-11 12:38:30 +0200 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2018-09-11 12:40:55 +0200 |
commit | 56060b04c6d2986b6575019143df77c3c379a757 (patch) | |
tree | cca009d9cfaeb44a0971aa9fc73c3cfd6314e54b /Documentation/devicetree/bindings/mfd | |
parent | tty/serial: atmel: Change the driver to work under at91-usart MFD (diff) | |
download | linux-56060b04c6d2986b6575019143df77c3c379a757.tar.xz linux-56060b04c6d2986b6575019143df77c3c379a757.zip |
dt-bindings: mfd: atmel-usart: Correct interrupts property to include IRQ number
IRQ number was missing.
Suggested-by: Radu Nicolae Pirea <pirea.radu@gmail.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'Documentation/devicetree/bindings/mfd')
-rw-r--r-- | Documentation/devicetree/bindings/mfd/atmel-usart.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/mfd/atmel-usart.txt b/Documentation/devicetree/bindings/mfd/atmel-usart.txt index 0348fef0f497..7f0cd72f47d2 100644 --- a/Documentation/devicetree/bindings/mfd/atmel-usart.txt +++ b/Documentation/devicetree/bindings/mfd/atmel-usart.txt @@ -78,7 +78,7 @@ Example: compatible = "atmel,at91rm9200-usart", "atmel,at91sam9260-usart"; atmel,usart-mode = <AT91_USART_MODE_SPI>; reg = <0xf001c000 0x100>; - interrupts = <12 IRQ_TYPE_LEVEL_HIGH>; + interrupts = <12 IRQ_TYPE_LEVEL_HIGH 5>; clocks = <&usart0_clk>; clock-names = "usart"; cs-gpios = <&pioB 3 0>; |