| Submitter | Huang Shijie |
|---|---|
| Date | Oct. 10, 2012, 6:15 a.m. |
| Message ID | <1349849740-14090-1-git-send-email-b32955@freescale.com> |
| Download | mbox | patch |
| Permalink | /patch/190569/ |
| State | New |
| Headers | show |
Comments
Dear Huang Shijie, > The current DT nodes for mx23/mx28 miss the `clocks-names` item for > gpmi-nand. So the gpmi-nand driver could not find the proper clock. > > This patch fixes this issue. > > Signed-off-by: Huang Shijie <b32955@freescale.com> [...] One more rant: Can you discard that weird backtick in the patch subject? Maybe use '' ? Best regards, Marek Vasut
Patch
diff --git a/arch/arm/boot/dts/imx23.dtsi b/arch/arm/boot/dts/imx23.dtsi index 9ca4ca7..6d31aa3 100644 --- a/arch/arm/boot/dts/imx23.dtsi +++ b/arch/arm/boot/dts/imx23.dtsi @@ -69,6 +69,7 @@ interrupts = <13>, <56>; interrupt-names = "gpmi-dma", "bch"; clocks = <&clks 34>; + clock-names = "gpmi_io"; fsl,gpmi-dma-channel = <4>; status = "disabled"; }; diff --git a/arch/arm/boot/dts/imx28.dtsi b/arch/arm/boot/dts/imx28.dtsi index e16d631..55c57ea 100644 --- a/arch/arm/boot/dts/imx28.dtsi +++ b/arch/arm/boot/dts/imx28.dtsi @@ -85,6 +85,7 @@ interrupts = <88>, <41>; interrupt-names = "gpmi-dma", "bch"; clocks = <&clks 50>; + clock-names = "gpmi_io"; fsl,gpmi-dma-channel = <4>; status = "disabled"; };
The current DT nodes for mx23/mx28 miss the `clocks-names` item for gpmi-nand. So the gpmi-nand driver could not find the proper clock. This patch fixes this issue. Signed-off-by: Huang Shijie <b32955@freescale.com> --- arch/arm/boot/dts/imx23.dtsi | 1 + arch/arm/boot/dts/imx28.dtsi | 1 + 2 files changed, 2 insertions(+), 0 deletions(-)