]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - arch/arm/mach-s5pc100/setup-sdhci-gpio.c
ARM: S5PC100: Change to using s3c_gpio_cfgpin_range()
[net-next-2.6.git] / arch / arm / mach-s5pc100 / setup-sdhci-gpio.c
index dc7208c639ea0804a80700dd43a917c5b8ee5e01..79b031f5f4345350d4668a51e072f756e3a5a4ec 100644 (file)
@@ -37,10 +37,9 @@ void s5pc100_setup_sdhci0_cfg_gpio(struct platform_device *dev, int width)
        end = S5PC100_GPG0(2 + num);
 
        /* Set all the necessary GPG0/GPG1 pins to special-function 0 */
-       for (gpio = S5PC100_GPG0(0); gpio < end; gpio++) {
-               s3c_gpio_cfgpin(gpio, S3C_GPIO_SFN(2));
+       s3c_gpio_cfgpin_range(S5PC100_GPG0(0), 2 + num, S3C_GPIO_SFN(2));
+       for (gpio = S5PC100_GPG0(0); gpio < end; gpio++)
                s3c_gpio_setpull(gpio, S3C_GPIO_PULL_NONE);
-       }
 
        if (width == 8) {
                for (gpio = S5PC100_GPG1(0); gpio <= S5PC100_GPG1(1); gpio++) {
@@ -64,10 +63,9 @@ void s5pc100_setup_sdhci1_cfg_gpio(struct platform_device *dev, int width)
        end = S5PC100_GPG2(2 + width);
 
        /* Set all the necessary GPG2 pins to special-function 2 */
-       for (gpio = S5PC100_GPG2(0); gpio < end; gpio++) {
-               s3c_gpio_cfgpin(gpio, S3C_GPIO_SFN(2));
+       s3c_gpio_cfgpin_range(S5PC100_GPG2(0), 2 + width, S3C_GPIO_SFN(2));
+       for (gpio = S5PC100_GPG2(0); gpio < end; gpio++)
                s3c_gpio_setpull(gpio, S3C_GPIO_PULL_NONE);
-       }
 
        if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
                s3c_gpio_setpull(S5PC100_GPG2(6), S3C_GPIO_PULL_UP);
@@ -84,10 +82,9 @@ void s5pc100_setup_sdhci2_cfg_gpio(struct platform_device *dev, int width)
        end = S5PC100_GPG3(2 + width);
 
        /* Set all the necessary GPG3 pins to special-function 2 */
-       for (gpio = S5PC100_GPG3(0); gpio < end; gpio++) {
-               s3c_gpio_cfgpin(gpio, S3C_GPIO_SFN(2));
+       s3c_gpio_cfgpin_range(S5PC100_GPG3(0), 2 + width, S3C_GPIO_SFN(2));
+       for (gpio = S5PC100_GPG3(0); gpio < end; gpio++)
                s3c_gpio_setpull(gpio, S3C_GPIO_PULL_NONE);
-       }
 
        if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) {
                s3c_gpio_setpull(S5PC100_GPG3(6), S3C_GPIO_PULL_UP);