diff options
author | Shawn Guo | 2012-08-22 15:46:39 +0200 |
---|---|---|
committer | Shawn Guo | 2012-08-23 15:10:23 +0200 |
commit | a46d2619d7180bda12bad2bf15bbd0731dfc2dcf (patch) | |
tree | 875e06d81f33070d7bd247c734d9677cf636f488 /Documentation | |
parent | ARM: imx6: spin the cpu until hardware takes it down (diff) | |
download | kernel-qcow2-linux-a46d2619d7180bda12bad2bf15bbd0731dfc2dcf.tar.gz kernel-qcow2-linux-a46d2619d7180bda12bad2bf15bbd0731dfc2dcf.tar.xz kernel-qcow2-linux-a46d2619d7180bda12bad2bf15bbd0731dfc2dcf.zip |
ARM: dts: imx51-babbage: fix esdhc cd/wp properties
The binding doc and dts use properties "fsl,{cd,wp}-internal" while
esdhc driver uses "fsl,{cd,wp}-controller". Fix binding doc and dts
to get them match driver code.
Reported-by: Chris Ball <cjb@laptop.org>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Cc: <stable@vger.kernel.org>
Acked-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/mmc/fsl-imx-esdhc.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/devicetree/bindings/mmc/fsl-imx-esdhc.txt b/Documentation/devicetree/bindings/mmc/fsl-imx-esdhc.txt index 70cd49b1caa8..1dd622546d06 100644 --- a/Documentation/devicetree/bindings/mmc/fsl-imx-esdhc.txt +++ b/Documentation/devicetree/bindings/mmc/fsl-imx-esdhc.txt @@ -10,8 +10,8 @@ Required properties: - compatible : Should be "fsl,<chip>-esdhc" Optional properties: -- fsl,cd-internal : Indicate to use controller internal card detection -- fsl,wp-internal : Indicate to use controller internal write protection +- fsl,cd-controller : Indicate to use controller internal card detection +- fsl,wp-controller : Indicate to use controller internal write protection Examples: @@ -19,8 +19,8 @@ esdhc@70004000 { compatible = "fsl,imx51-esdhc"; reg = <0x70004000 0x4000>; interrupts = <1>; - fsl,cd-internal; - fsl,wp-internal; + fsl,cd-controller; + fsl,wp-controller; }; esdhc@70008000 { |