ux500: use _cansleep GPIO functions
authorLinus Walleij <linus.walleij@stericsson.com>
Thu, 9 Sep 2010 20:29:34 +0000 (22:29 +0200)
committerLinus Walleij <linus.walleij@stericsson.com>
Wed, 8 Dec 2010 12:14:00 +0000 (13:14 +0100)
Similar to the patch to MMCI this silences similar messages from
the platform code.

Signed-off-by: Linus Walleij <linus.walleij@stericsson.com>
arch/arm/mach-ux500/board-mop500-sdi.c

index f0095ff..2fbaa20 100644 (file)
@@ -77,9 +77,9 @@ static u32 mop500_sdi0_vdd_handler(struct device *dev, unsigned int vdd,
                                   unsigned char power_mode)
 {
        if (power_mode == MMC_POWER_UP)
-               gpio_set_value(GPIO_SDMMC_EN, 1);
+               gpio_set_value_cansleep(GPIO_SDMMC_EN, 1);
        else if (power_mode == MMC_POWER_OFF)
-               gpio_set_value(GPIO_SDMMC_EN, 0);
+               gpio_set_value_cansleep(GPIO_SDMMC_EN, 0);
 
        return MCI_FBCLKEN | MCI_CMDDIREN | MCI_DATA0DIREN |
               MCI_DATA2DIREN | MCI_DATA31DIREN;