diff options
| author | Faiz Abbas <[email protected]> | 2018-03-15 21:11:34 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2018-03-22 16:32:30 -0400 |
| commit | 8e14ba7bd5242ec1e92367d1cea67b66f8b958c0 (patch) | |
| tree | 77da2471b3d3742f3c87aa0d05f17a997bd46bc3 /drivers | |
| parent | f69dce5081396a83b87d6df2693764b99466a18d (diff) | |
gpio: omap_gpio: Add DM_FLAG_PRE_RELOC flag
With DM enabled in SPL, DM_FLAG_PRE_RELOC is required for
the omap_gpio driver to be bound to the gpio devices.
Therefore, add DM_FLAG_PRE_RELOC flag to the omap_gpio driver.
Signed-off-by: Faiz Abbas <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/gpio/omap_gpio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/omap_gpio.c b/drivers/gpio/omap_gpio.c index 7243100219a..559f29b8018 100644 --- a/drivers/gpio/omap_gpio.c +++ b/drivers/gpio/omap_gpio.c @@ -345,6 +345,7 @@ U_BOOT_DRIVER(gpio_omap) = { .bind = omap_gpio_bind, .probe = omap_gpio_probe, .priv_auto_alloc_size = sizeof(struct gpio_bank), + .flags = DM_FLAG_PRE_RELOC, }; #endif /* CONFIG_DM_GPIO */ |
