Besides being used to interface with external memory devices, the General-Purpose Memory Controller can be used to connect Pseudo-SRAM devices to the OMAP processor that use the GPMC as a data bus. One of these devices is the smsc911x LAN chip. This patch allows an smsc911x LAN pheripheral to be defined as an GPMC child node an call its corresponding setup function. Signed-off-by: Javier Martinez Canillas <javier.martinez@xxxxxxxxxxxxxxx> --- arch/arm/mach-omap2/gpmc.c | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/gpmc.c b/arch/arm/mach-omap2/gpmc.c index f55b504..fd22c62 100644 --- a/arch/arm/mach-omap2/gpmc.c +++ b/arch/arm/mach-omap2/gpmc.c @@ -40,6 +40,7 @@ #include "gpmc.h" #include "gpmc-nand.h" #include "gpmc-onenand.h" +#include "gpmc-smsc911x.h" #define DEVICE_NAME "omap-gpmc" @@ -1320,6 +1321,14 @@ static int gpmc_probe_dt(struct platform_device *pdev) return ret; } } + + for_each_node_by_name(child, "gpmc_smsc911x") { + ret = gpmc_smsc911x_init_dt(child); + if (ret < 0) { + of_node_put(child); + return ret; + } + } return 0; } #else -- 1.7.7.6 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html