
4 Apr
2016
4 Apr
'16
1:58 p.m.
Add request gpio for CD and WP gpios, so that the gpio can be used for the respective purposes.
Signed-off-by: Mugunthan V N mugunthanvnm@ti.com --- drivers/mmc/omap_hsmmc.c | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c index 1071314..85a832b 100644 --- a/drivers/mmc/omap_hsmmc.c +++ b/drivers/mmc/omap_hsmmc.c @@ -820,6 +820,11 @@ static int omap_hsmmc_probe(struct udevice *dev) if (mmc == NULL) return -1;
+#ifdef OMAP_HSMMC_USE_GPIO + gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, GPIOD_IS_IN); + gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio, GPIOD_IS_IN); +#endif + upriv->mmc = mmc;
return 0;
--
2.8.0.rc3.9.g44915db