aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/atmel-mci.h
diff options
context:
space:
mode:
authorTimo Kokkonen <timo.kokkonen@offcode.fi>2014-11-03 13:12:59 +0200
committerUlf Hansson <ulf.hansson@linaro.org>2014-11-10 12:40:48 +0100
commit76d5556428fbbdf411504895b516272cad27127d (patch)
treed3fd33cd25ceaa1ea7d644ab20a6ebf2650bfa40 /include/linux/atmel-mci.h
parentmmc: sdhci-pxav3: Document clocks and additional clock-names property (diff)
downloadlinux-dev-76d5556428fbbdf411504895b516272cad27127d.tar.xz
linux-dev-76d5556428fbbdf411504895b516272cad27127d.zip
mmc: host: atmel-mci: Add support for non-removable slots
Add support for non-removable slots which have no card detection GPIO and which should not be polled for a card change. Signed-off-by: Timo Kokkonen <timo.kokkonen@offcode.fi> Acked-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'include/linux/atmel-mci.h')
-rw-r--r--include/linux/atmel-mci.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/atmel-mci.h b/include/linux/atmel-mci.h
index 91b77f8d495d..9177947bf032 100644
--- a/include/linux/atmel-mci.h
+++ b/include/linux/atmel-mci.h
@@ -11,6 +11,7 @@
* @detect_pin: GPIO pin wired to the card detect switch
* @wp_pin: GPIO pin wired to the write protect sensor
* @detect_is_active_high: The state of the detect pin when it is active
+ * @non_removable: The slot is not removable, only detect once
*
* If a given slot is not present on the board, @bus_width should be
* set to 0. The other fields are ignored in this case.
@@ -26,6 +27,7 @@ struct mci_slot_pdata {
int detect_pin;
int wp_pin;
bool detect_is_active_high;
+ bool non_removable;
};
/**