Dear Maxime Ripard, Some nitpicking below.
On Thu, 13 Jun 2013 15:43:44 +0200, Maxime Ripard wrote: > -static void __init cfa10049_init(void) > -{ > - update_fec_mac_prop(OUI_CRYSTALFONTZ); > -} > - > -static void __init cfa10037_init(void) > +static void __init crystalfontz_init(void) > { > update_fec_mac_prop(OUI_CRYSTALFONTZ); > } > @@ -368,10 +363,10 @@ static void __init mxs_machine_init(void) > imx28_evk_init(); > else if (of_machine_is_compatible("bluegiga,apx4devkit")) > apx4devkit_init(); > - else if (of_machine_is_compatible("crystalfontz,cfa10037")) > - cfa10037_init(); > - else if (of_machine_is_compatible("crystalfontz,cfa10049")) > - cfa10049_init(); > + else if (of_machine_is_compatible("crystalfontz,cfa10037") || > + of_machine_is_compatible("crystalfontz,cfa10049") || > + of_machine_is_compatible("crystalfontz,cfa10055")) > + crystalfontz_init(); Maybe this could be something like: else if (of_machine_is_compatible("crystalfontz,cfa10036")) crystalfontz_init(); with crystalfontz_init() something like: if (mac0 has status = "okay") update_fec_mac_prop(OUI_CRYSTALFONTZ); This way, for all Crystalfontz boards that have an Ethernet interface, it would call update_fec_mac_prop() without having to update mach-mxs.c every time. (Of course, this is based on the assumption that all Crystalfontz .dts files have "crystalfontz,cfa10036" in their compatible string list) Best regards, Thomas -- Thomas Petazzoni, Free Electrons Kernel, drivers, real-time and embedded Linux development, consulting, training and support. http://free-electrons.com -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/