Message ID | 20211017195105.3498643-1-david@lechnology.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [RESEND] ARM: dts: da850: add MMD SDIO interrupts | expand |
On Sun, 17 Oct 2021 14:51:05 -0500, David Lechner wrote: > This adds the MMC SDIO interrupts to the MMC nodes in the device tree > for TI DA850/AM18XX/OMAP-L138. > > The missing interrupts were causing the following error message to be > printed: > > davinci_mmc 1c40000.mmc: IRQ index 1 not found > > [...] Applied, thanks! [1/1] ARM: dts: da850: add MMD SDIO interrupts https://git.kernel.org/krzk/linux-dt/c/8af75ce86f7d55124e41b499aa43f50748138bec Best regards,
diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi index c3942b4e82ad..bda9a22ba4bc 100644 --- a/arch/arm/boot/dts/da850.dtsi +++ b/arch/arm/boot/dts/da850.dtsi @@ -537,7 +537,7 @@ mmc0: mmc@40000 { reg = <0x40000 0x1000>; cap-sd-highspeed; cap-mmc-highspeed; - interrupts = <16>; + interrupts = <16>, <17>; dmas = <&edma0 16 0>, <&edma0 17 0>; dma-names = "rx", "tx"; clocks = <&psc0 5>; @@ -567,7 +567,7 @@ mmc1: mmc@21b000 { reg = <0x21b000 0x1000>; cap-sd-highspeed; cap-mmc-highspeed; - interrupts = <72>; + interrupts = <72>, <73>; dmas = <&edma1 28 0>, <&edma1 29 0>; dma-names = "rx", "tx"; clocks = <&psc1 18>;
This adds the MMC SDIO interrupts to the MMC nodes in the device tree for TI DA850/AM18XX/OMAP-L138. The missing interrupts were causing the following error message to be printed: davinci_mmc 1c40000.mmc: IRQ index 1 not found Signed-off-by: David Lechner <david@lechnology.com> --- arch/arm/boot/dts/da850.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)