Skip to content

Commit

Permalink
ARM: OMAP: Fix dts files w/ status property: "disable" -> "disabled"
Browse files Browse the repository at this point in the history
This patches fixes some status = "disable" strings to "disabled", the correct
way of disabling nodes in the devicetree.

Just the OMAP part here, the rest goes via other patches and trees.

Signed-off-by: Roland Stigge <stigge@antcom.de>
Acked-by: Rob Herring <rob.herring@calxeda.com>
Acked-by: Benoit Cousson <b-cousson@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
  • Loading branch information
Roland Stigge authored and Tony Lindgren committed Jun 21, 2012
1 parent f6f6c9a commit fd5c3fd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/omap3-beagle.dts
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
};

&mmc2 {
status = "disable";
status = "disabled";
};

&mmc3 {
status = "disable";
status = "disabled";
};
6 changes: 3 additions & 3 deletions arch/arm/boot/dts/omap4-panda.dts
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@
};

&mmc2 {
status = "disable";
status = "disabled";
};

&mmc3 {
status = "disable";
status = "disabled";
};

&mmc4 {
status = "disable";
status = "disabled";
};

&mmc5 {
Expand Down
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/omap4-sdp.dts
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,11 @@
};

&mmc3 {
status = "disable";
status = "disabled";
};

&mmc4 {
status = "disable";
status = "disabled";
};

&mmc5 {
Expand Down

0 comments on commit fd5c3fd

Please sign in to comment.