ARM: OMAP: Fix dts files w/ status property: "disable" -> "disabled"
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>
This commit is contained in:
parent
f6f6c9a5be
commit
fd5c3fd7c4
3 changed files with 7 additions and 7 deletions
|
@ -61,9 +61,9 @@
|
|||
};
|
||||
|
||||
&mmc2 {
|
||||
status = "disable";
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
&mmc3 {
|
||||
status = "disable";
|
||||
status = "disabled";
|
||||
};
|
||||
|
|
|
@ -74,15 +74,15 @@
|
|||
};
|
||||
|
||||
&mmc2 {
|
||||
status = "disable";
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
&mmc3 {
|
||||
status = "disable";
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
&mmc4 {
|
||||
status = "disable";
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
&mmc5 {
|
||||
|
|
|
@ -147,11 +147,11 @@
|
|||
};
|
||||
|
||||
&mmc3 {
|
||||
status = "disable";
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
&mmc4 {
|
||||
status = "disable";
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
&mmc5 {
|
||||
|
|
Loading…
Reference in a new issue