]> git.sur5r.net Git - u-boot/commitdiff
85xx: Always attempt ethernet device tree fixup
authorKumar Gala <galak@kernel.crashing.org>
Thu, 21 May 2009 13:36:43 +0000 (08:36 -0500)
committerKumar Gala <galak@kernel.crashing.org>
Fri, 12 Jun 2009 22:16:26 +0000 (17:16 -0500)
Its reasonable that we may have ethernet devices but dont have drivers
or support enabled for them in u-boot and want the device tree fixed up.
Unconditionally calling the ethernet fixup is fine since if we dont have
ethernet nodes that match (or aliases) we will not attempt to do
anything.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Timur Tabi <timur@freescale.com>
cpu/mpc85xx/fdt.c

index 26a8f48552e216cf9f6969ec52b94205b390d387..a692529689d34bf66ccf0c28abb0eae2b26bcdc4 100644 (file)
@@ -278,12 +278,9 @@ void ft_cpu_setup(void *blob, bd_t *bd)
        if (!IS_E_PROCESSOR(get_svr()))
                fdt_fixup_crypto_node(blob, 0);
 
-#if defined(CONFIG_HAS_ETH0) || defined(CONFIG_HAS_ETH1) ||\
-    defined(CONFIG_HAS_ETH2) || defined(CONFIG_HAS_ETH3)
        fdt_fixup_ethernet(blob);
 
        fdt_add_enet_stashing(blob);
-#endif
 
        do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
                "timebase-frequency", bd->bi_busfreq / 8, 1);