Signed-off-by: Alexander Stein <[email protected]>
---
 arch/arm/mach-at91/include/mach/board.h |    1 +
 drivers/mmc/host/at91_mci.c             |    3 ++-
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-at91/include/mach/board.h 
b/arch/arm/mach-at91/include/mach/board.h
index ed544a0..1b0f3f7 100644
--- a/arch/arm/mach-at91/include/mach/board.h
+++ b/arch/arm/mach-at91/include/mach/board.h
@@ -74,6 +74,7 @@ struct at91_mmc_data {
        unsigned        slot_b:1;       /* uses Slot B */
        unsigned        wire4:1;        /* (SD) supports DAT0..DAT3 */
        u8              wp_pin;         /* (SD) writeprotect detect */
+       bool    wp_active_low;          /* (SD) writeprotect logic inverted */
        u8              vcc_pin;        /* power switching (high == on) */
 };
 extern void __init at91_add_device_mmc(short mmc_id, struct at91_mmc_data 
*data);
diff --git a/drivers/mmc/host/at91_mci.c b/drivers/mmc/host/at91_mci.c
index a4aa3af..36ba69e 100644
--- a/drivers/mmc/host/at91_mci.c
+++ b/drivers/mmc/host/at91_mci.c
@@ -894,7 +894,8 @@ static int at91_mci_get_ro(struct mmc_host *mmc)
        struct at91mci_host *host = mmc_priv(mmc);
 
        if (host->board->wp_pin)
-               return !!gpio_get_value(host->board->wp_pin);
+               return !!gpio_get_value(host->board->wp_pin)
+                                       ^ host->board->wp_active_low;
        /*
         * Board doesn't support read only detection; let the mmc core
         * decide what to do.
-- 
1.7.3.4

--
To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to