dm: vybrid_gpio: Drop legacy code
authorBhuvanchandra DV <bhuvanchandra.dv@toradex.com>
Wed, 27 Jan 2016 05:01:53 +0000 (10:31 +0530)
committerStefano Babic <sbabic@denx.de>
Tue, 2 Feb 2016 20:36:10 +0000 (21:36 +0100)
All boards using this driver are with device tree support,
hence drop the legacy code in driver to have a pure DT solution.

Signed-off-by: Bhuvanchandra DV <bhuvanchandra.dv@toradex.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
drivers/gpio/vybrid_gpio.c

index 4d25f9af4e0f63866fa3f209e1e17792c0521a77..a30ba5d2ed6f3966b3bab766355d05c43faf651a 100644 (file)
@@ -135,24 +135,6 @@ static int vybrid_gpio_bind(struct udevice *dev)
        return 0;
 }
 
-#if !CONFIG_IS_ENABLED(OF_CONTROL)
-static const struct vybrid_gpio_platdata vybrid_gpio[] = {
-       {0, GPIO0_BASE_ADDR, "GPIO0 "},
-       {1, GPIO1_BASE_ADDR, "GPIO1 "},
-       {2, GPIO2_BASE_ADDR, "GPIO2 "},
-       {3, GPIO3_BASE_ADDR, "GPIO3 "},
-       {4, GPIO4_BASE_ADDR, "GPIO4 "},
-};
-
-U_BOOT_DEVICES(vybrid_gpio) = {
-       { "gpio_vybrid", &vybrid_gpio[0] },
-       { "gpio_vybrid", &vybrid_gpio[1] },
-       { "gpio_vybrid", &vybrid_gpio[2] },
-       { "gpio_vybrid", &vybrid_gpio[3] },
-       { "gpio_vybrid", &vybrid_gpio[4] },
-};
-#endif
-
 static const struct udevice_id vybrid_gpio_ids[] = {
        { .compatible = "fsl,vf610-gpio" },
        { }