diff options
-rw-r--r-- | arch/arm/mach-s5pc100/Kconfig | 17 | ||||
-rw-r--r-- | arch/arm/mach-s5pc100/Makefile | 3 | ||||
-rw-r--r-- | arch/arm/mach-s5pc100/setup-sdhci-gpio.c (renamed from arch/arm/plat-s5pc1xx/setup-sdhci-gpio.c) | 4 | ||||
-rw-r--r-- | arch/arm/plat-s5pc1xx/Kconfig | 5 | ||||
-rw-r--r-- | arch/arm/plat-s5pc1xx/Makefile | 1 |
5 files changed, 15 insertions, 15 deletions
diff --git a/arch/arm/mach-s5pc100/Kconfig b/arch/arm/mach-s5pc100/Kconfig index 8593337784e1..70b57d19bc91 100644 --- a/arch/arm/mach-s5pc100/Kconfig +++ b/arch/arm/mach-s5pc100/Kconfig | |||
@@ -17,17 +17,22 @@ config S5PC100_SETUP_FB_24BPP | |||
17 | help | 17 | help |
18 | Common setup code for S5PC1XX with an 24bpp RGB display helper. | 18 | Common setup code for S5PC1XX with an 24bpp RGB display helper. |
19 | 19 | ||
20 | config S5PC100_SETUP_SDHCI | ||
21 | bool | ||
22 | select S5PC1XX_SETUP_SDHCI_GPIO | ||
23 | help | ||
24 | Internal helper functions for S5PC100 based SDHCI systems | ||
25 | |||
26 | config S5PC100_SETUP_I2C1 | 20 | config S5PC100_SETUP_I2C1 |
27 | bool | 21 | bool |
28 | help | 22 | help |
29 | Common setup code for i2c bus 1. | 23 | Common setup code for i2c bus 1. |
30 | 24 | ||
25 | config S5PC100_SETUP_SDHCI | ||
26 | bool | ||
27 | select S5PC100_SETUP_SDHCI_GPIO | ||
28 | help | ||
29 | Internal helper functions for S5PC100 based SDHCI systems | ||
30 | |||
31 | config S5PC100_SETUP_SDHCI_GPIO | ||
32 | bool | ||
33 | help | ||
34 | Common setup code for SDHCI gpio. | ||
35 | |||
31 | config MACH_SMDKC100 | 36 | config MACH_SMDKC100 |
32 | bool "SMDKC100" | 37 | bool "SMDKC100" |
33 | select CPU_S5PC100 | 38 | select CPU_S5PC100 |
diff --git a/arch/arm/mach-s5pc100/Makefile b/arch/arm/mach-s5pc100/Makefile index 373bc546eae8..9a545cad682b 100644 --- a/arch/arm/mach-s5pc100/Makefile +++ b/arch/arm/mach-s5pc100/Makefile | |||
@@ -18,7 +18,8 @@ obj-$(CONFIG_CPU_S5PC100) += setup-i2c0.o | |||
18 | 18 | ||
19 | obj-$(CONFIG_S5PC100_SETUP_FB_24BPP) += setup-fb-24bpp.o | 19 | obj-$(CONFIG_S5PC100_SETUP_FB_24BPP) += setup-fb-24bpp.o |
20 | obj-$(CONFIG_S5PC100_SETUP_I2C1) += setup-i2c1.o | 20 | obj-$(CONFIG_S5PC100_SETUP_I2C1) += setup-i2c1.o |
21 | obj-$(CONFIG_S5PC100_SETUP_SDHCI) += setup-sdhci.o | 21 | obj-$(CONFIG_S5PC100_SETUP_SDHCI) += setup-sdhci.o |
22 | obj-$(CONFIG_S5PC100_SETUP_SDHCI_GPIO) += setup-sdhci-gpio.o | ||
22 | 23 | ||
23 | # machine support | 24 | # machine support |
24 | obj-$(CONFIG_MACH_SMDKC100) += mach-smdkc100.o | 25 | obj-$(CONFIG_MACH_SMDKC100) += mach-smdkc100.o |
diff --git a/arch/arm/plat-s5pc1xx/setup-sdhci-gpio.c b/arch/arm/mach-s5pc100/setup-sdhci-gpio.c index 185c8941e644..7769c760c9ef 100644 --- a/arch/arm/plat-s5pc1xx/setup-sdhci-gpio.c +++ b/arch/arm/mach-s5pc100/setup-sdhci-gpio.c | |||
@@ -1,8 +1,8 @@ | |||
1 | /* linux/arch/arm/plat-s5pc1xx/setup-sdhci-gpio.c | 1 | /* linux/arch/arm/plat-s5pc100/setup-sdhci-gpio.c |
2 | * | 2 | * |
3 | * Copyright 2009 Samsung Eletronics | 3 | * Copyright 2009 Samsung Eletronics |
4 | * | 4 | * |
5 | * S5PC1XX - Helper functions for setting up SDHCI device(s) GPIO (HSMMC) | 5 | * S5PC100 - Helper functions for setting up SDHCI device(s) GPIO (HSMMC) |
6 | * | 6 | * |
7 | * This program is free software; you can redistribute it and/or modify | 7 | * This program is free software; you can redistribute it and/or modify |
8 | * it under the terms of the GNU General Public License version 2 as | 8 | * it under the terms of the GNU General Public License version 2 as |
diff --git a/arch/arm/plat-s5pc1xx/Kconfig b/arch/arm/plat-s5pc1xx/Kconfig index c7bd2bbda239..ab58758393f3 100644 --- a/arch/arm/plat-s5pc1xx/Kconfig +++ b/arch/arm/plat-s5pc1xx/Kconfig | |||
@@ -39,9 +39,4 @@ config CPU_S5PC100_CLOCK | |||
39 | 39 | ||
40 | # platform specific device setup | 40 | # platform specific device setup |
41 | 41 | ||
42 | config S5PC1XX_SETUP_SDHCI_GPIO | ||
43 | bool | ||
44 | help | ||
45 | Common setup code for SDHCI gpio. | ||
46 | |||
47 | endif | 42 | endif |
diff --git a/arch/arm/plat-s5pc1xx/Makefile b/arch/arm/plat-s5pc1xx/Makefile index 9ce6409a9e02..d4905432dbfc 100644 --- a/arch/arm/plat-s5pc1xx/Makefile +++ b/arch/arm/plat-s5pc1xx/Makefile | |||
@@ -23,4 +23,3 @@ obj-$(CONFIG_CPU_S5PC100_CLOCK) += s5pc100-clock.o | |||
23 | 23 | ||
24 | # Device setup | 24 | # Device setup |
25 | 25 | ||
26 | obj-$(CONFIG_S5PC1XX_SETUP_SDHCI_GPIO) += setup-sdhci-gpio.o | ||