From: Adam Ford Date: Sun, 9 Apr 2017 12:35:12 +0000 (-0500) Subject: OMAP3: Correct name of omap34xx_gpios when using DM_GPIO X-Git-Tag: v2017.05-rc3~53 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=44913aa52b819d6d601baefdb36fdf2d3dc18c71;p=u-boot OMAP3: Correct name of omap34xx_gpios when using DM_GPIO The name of the gpio bank under DM_GPIO appear to be a copy-paste error. This changes the name of the gpio bank from am33xx_gpios to omap34xx_gpios. Signed-off-by: Adam Ford Reviewed-by: Tom Rini --- diff --git a/arch/arm/mach-omap2/omap3/board.c b/arch/arm/mach-omap2/omap3/board.c index f1436fbf51..01df579df2 100644 --- a/arch/arm/mach-omap2/omap3/board.c +++ b/arch/arm/mach-omap2/omap3/board.c @@ -46,7 +46,7 @@ static const struct omap_gpio_platdata omap34xx_gpio[] = { { 5, OMAP34XX_GPIO6_BASE }, }; -U_BOOT_DEVICES(am33xx_gpios) = { +U_BOOT_DEVICES(omap34xx_gpios) = { { "gpio_omap", &omap34xx_gpio[0] }, { "gpio_omap", &omap34xx_gpio[1] }, { "gpio_omap", &omap34xx_gpio[2] },