ARM: SAMSUNG: Move device definitions in plat-samsung
authorBen Dooks <ben-linux@fluff.org>
Tue, 5 Jan 2010 17:45:09 +0000 (02:45 +0900)
committerBen Dooks <ben-linux@fluff.org>
Fri, 15 Jan 2010 08:10:13 +0000 (17:10 +0900)
Move all the platform device definitions from plat-s3c into plat-samsung

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
13 files changed:
arch/arm/plat-s3c/Kconfig
arch/arm/plat-s3c/Makefile
arch/arm/plat-samsung/Kconfig
arch/arm/plat-samsung/Makefile
arch/arm/plat-samsung/dev-fb.c [moved from arch/arm/plat-s3c/dev-fb.c with 100% similarity]
arch/arm/plat-samsung/dev-hsmmc.c [moved from arch/arm/plat-s3c/dev-hsmmc.c with 100% similarity]
arch/arm/plat-samsung/dev-hsmmc1.c [moved from arch/arm/plat-s3c/dev-hsmmc1.c with 100% similarity]
arch/arm/plat-samsung/dev-hsmmc2.c [moved from arch/arm/plat-s3c/dev-hsmmc2.c with 100% similarity]
arch/arm/plat-samsung/dev-i2c0.c [moved from arch/arm/plat-s3c/dev-i2c0.c with 100% similarity]
arch/arm/plat-samsung/dev-i2c1.c [moved from arch/arm/plat-s3c/dev-i2c1.c with 100% similarity]
arch/arm/plat-samsung/dev-nand.c [moved from arch/arm/plat-s3c/dev-nand.c with 100% similarity]
arch/arm/plat-samsung/dev-usb-hsotg.c [moved from arch/arm/plat-s3c/dev-usb-hsotg.c with 100% similarity]
arch/arm/plat-samsung/dev-usb.c [moved from arch/arm/plat-s3c/dev-usb.c with 100% similarity]

index 9e9d028..cd979b1 100644 (file)
@@ -170,46 +170,4 @@ config S3C_DMA
        help
          Internal configuration for S3C DMA core
 
-# device definitions to compile in
-
-config S3C_DEV_HSMMC
-       bool
-       help
-         Compile in platform device definitions for HSMMC code
-
-config S3C_DEV_HSMMC1
-       bool
-       help
-         Compile in platform device definitions for HSMMC channel 1
-
-config S3C_DEV_HSMMC2
-       bool
-       help
-         Compile in platform device definitions for HSMMC channel 2
-
-config S3C_DEV_I2C1
-       bool
-       help
-         Compile in platform device definitions for I2C channel 1
-
-config S3C_DEV_FB
-       bool
-       help
-         Compile in platform device definition for framebuffer
-
-config S3C_DEV_USB_HOST
-       bool
-       help
-         Compile in platform device definition for USB host.
-
-config S3C_DEV_USB_HSOTG
-       bool
-       help
-         Compile in platform device definition for USB high-speed OtG
-
-config S3C_DEV_NAND
-       bool
-       help
-         Compile in platform device definition for NAND controller
-
 endif
index ef10a91..d862995 100644 (file)
@@ -29,15 +29,3 @@ obj-$(CONFIG_S3C2410_PM_CHECK)       += pm-check.o
 # PWM support
 
 obj-$(CONFIG_HAVE_PWM)         += pwm.o
-
-# devices
-
-obj-$(CONFIG_S3C_DEV_HSMMC)    += dev-hsmmc.o
-obj-$(CONFIG_S3C_DEV_HSMMC1)   += dev-hsmmc1.o
-obj-$(CONFIG_S3C_DEV_HSMMC2)   += dev-hsmmc2.o
-obj-y                          += dev-i2c0.o
-obj-$(CONFIG_S3C_DEV_I2C1)     += dev-i2c1.o
-obj-$(CONFIG_S3C_DEV_FB)       += dev-fb.o
-obj-$(CONFIG_S3C_DEV_USB_HOST) += dev-usb.o
-obj-$(CONFIG_S3C_DEV_USB_HSOTG)        += dev-usb-hsotg.o
-obj-$(CONFIG_S3C_DEV_NAND)     += dev-nand.o
index e3ae684..5a72a52 100644 (file)
@@ -19,4 +19,46 @@ config SAMSUNG_CLKSRC
          Select the clock code for the clksrc implementation
          used by newer systems such as the S3C64XX.
 
+# device definitions to compile in
+
+config S3C_DEV_HSMMC
+       bool
+       help
+         Compile in platform device definitions for HSMMC code
+
+config S3C_DEV_HSMMC1
+       bool
+       help
+         Compile in platform device definitions for HSMMC channel 1
+
+config S3C_DEV_HSMMC2
+       bool
+       help
+         Compile in platform device definitions for HSMMC channel 2
+
+config S3C_DEV_I2C1
+       bool
+       help
+         Compile in platform device definitions for I2C channel 1
+
+config S3C_DEV_FB
+       bool
+       help
+         Compile in platform device definition for framebuffer
+
+config S3C_DEV_USB_HOST
+       bool
+       help
+         Compile in platform device definition for USB host.
+
+config S3C_DEV_USB_HSOTG
+       bool
+       help
+         Compile in platform device definition for USB high-speed OtG
+
+config S3C_DEV_NAND
+       bool
+       help
+         Compile in platform device definition for NAND controller
+
 endif
index d4d5f94..32f03e5 100644 (file)
@@ -15,3 +15,15 @@ obj-y                                += clock.o
 obj-y                          += pwm-clock.o
 
 obj-$(CONFIG_SAMSUNG_CLKSRC)   += clock-clksrc.o
+
+# devices
+
+obj-$(CONFIG_S3C_DEV_HSMMC)    += dev-hsmmc.o
+obj-$(CONFIG_S3C_DEV_HSMMC1)   += dev-hsmmc1.o
+obj-$(CONFIG_S3C_DEV_HSMMC2)   += dev-hsmmc2.o
+obj-y                          += dev-i2c0.o
+obj-$(CONFIG_S3C_DEV_I2C1)     += dev-i2c1.o
+obj-$(CONFIG_S3C_DEV_FB)       += dev-fb.o
+obj-$(CONFIG_S3C_DEV_USB_HOST) += dev-usb.o
+obj-$(CONFIG_S3C_DEV_USB_HSOTG)        += dev-usb-hsotg.o
+obj-$(CONFIG_S3C_DEV_NAND)     += dev-nand.o