diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2007-12-12 01:28:35 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-12-12 02:50:45 -0500 |
commit | e77b28eb199a8d637a00128b86baf515d4eba5fd (patch) | |
tree | 4bd63c9312c3ff17da778de9db7bdf07fe9644e6 /Documentation/powerpc | |
parent | ec9686c4a57ea46c97126660936f66e8a5eb87eb (diff) |
[POWERPC] FSL: enet device tree cleanups
* Removed address fields in ethernet nodes
* Removed #address-cells, #size-cells from gianfar nodes
* Added cell-index to gianfar and ucc ethernet nodes
* Added enet[0..3] labels
* Renamed compatible node for gianfar mdio to "fsl,gianfar-mdio"
* Removed device_type = "mdio"
The matching for gianfar mdio still supports the old "mdio"/"gianfar" combo
but it is now considered deprecated.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'Documentation/powerpc')
-rw-r--r-- | Documentation/powerpc/booting-without-of.txt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Documentation/powerpc/booting-without-of.txt b/Documentation/powerpc/booting-without-of.txt index 7327f37d78f3..c3fc9d955030 100644 --- a/Documentation/powerpc/booting-without-of.txt +++ b/Documentation/powerpc/booting-without-of.txt | |||
@@ -1223,16 +1223,14 @@ platforms are moved over to use the flattened-device-tree model. | |||
1223 | 1223 | ||
1224 | Required properties: | 1224 | Required properties: |
1225 | - reg : Offset and length of the register set for the device | 1225 | - reg : Offset and length of the register set for the device |
1226 | - device_type : Should be "mdio" | ||
1227 | - compatible : Should define the compatible device type for the | 1226 | - compatible : Should define the compatible device type for the |
1228 | mdio. Currently, this is most likely to be "gianfar" | 1227 | mdio. Currently, this is most likely to be "fsl,gianfar-mdio" |
1229 | 1228 | ||
1230 | Example: | 1229 | Example: |
1231 | 1230 | ||
1232 | mdio@24520 { | 1231 | mdio@24520 { |
1233 | reg = <24520 20>; | 1232 | reg = <24520 20>; |
1234 | device_type = "mdio"; | 1233 | compatible = "fsl,gianfar-mdio"; |
1235 | compatible = "gianfar"; | ||
1236 | 1234 | ||
1237 | ethernet-phy@0 { | 1235 | ethernet-phy@0 { |
1238 | ...... | 1236 | ...... |