diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2018-12-02 09:43:27 +0100 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2018-12-17 08:26:24 +0100 |
commit | f54005b508b9a9d9c375b445cd48b0e792b877c6 (patch) | |
tree | 7b7ab048f8da067692210fbd092615c2a0c520f5 /include/linux/platform_data/mmc-pxamci.h | |
parent | 80a68f387cd69da11aed9cf4911ce8f1a590cd5b (diff) | |
download | talos-op-linux-f54005b508b9a9d9c375b445cd48b0e792b877c6.tar.gz talos-op-linux-f54005b508b9a9d9c375b445cd48b0e792b877c6.zip |
mmc: pxa: Use GPIO descriptor for power
After converting the PXA driver to use GPIO descriptors for
card detect and write protect it is relatively simple to
convert it to also use a descriptor for getting the optional
power control GPIO.
The polarity inversion flag can also go away from the platform
data since this is indicated in the GPIO machine descriptor
table.
Cc: Daniel Mack <daniel@zonque.org>
Cc: Robert Jarzmik <robert.jarzmik@free.fr>
Cc: Bartosz Golaszewski <brgl@bgdev.pl>
Cc: Andrea Adami <andrea.adami@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'include/linux/platform_data/mmc-pxamci.h')
-rw-r--r-- | include/linux/platform_data/mmc-pxamci.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/platform_data/mmc-pxamci.h b/include/linux/platform_data/mmc-pxamci.h index db6c247d42d1..7e44e84e7150 100644 --- a/include/linux/platform_data/mmc-pxamci.h +++ b/include/linux/platform_data/mmc-pxamci.h @@ -16,8 +16,6 @@ struct pxamci_platform_data { int (*setpower)(struct device *, unsigned int); void (*exit)(struct device *, void *); bool gpio_card_ro_invert; /* gpio ro is inverted */ - int gpio_power; /* gpio powering up MMC bus */ - bool gpio_power_invert; /* gpio power is inverted */ }; extern void pxa_set_mci_info(struct pxamci_platform_data *info); |