mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-11-29 14:41:26 +01:00
mmc: Only retrieve cd pin when GPIO is enabled
The driver only needs to retrieve the pin for the ACPI info. The driver itself works without depending on GPIO. Signed-off-by: Harm Berntsen <harm.berntsen@nedap.com> CC: Simon Glass <sjg@chromium.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
e8fcb61852
commit
7b4fe6dac1
@ -52,9 +52,11 @@ static int pci_mmc_probe(struct udevice *dev)
|
|||||||
|
|
||||||
static int pci_mmc_of_to_plat(struct udevice *dev)
|
static int pci_mmc_of_to_plat(struct udevice *dev)
|
||||||
{
|
{
|
||||||
struct pci_mmc_priv *priv = dev_get_priv(dev);
|
if (CONFIG_IS_ENABLED(DM_GPIO)) {
|
||||||
|
struct pci_mmc_priv *priv = dev_get_priv(dev);
|
||||||
|
|
||||||
gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, GPIOD_IS_IN);
|
gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, GPIOD_IS_IN);
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user