diff options
Diffstat (limited to 'arch/arm/mach-s3c2416/mach-smdk2416.c')
-rw-r--r-- | arch/arm/mach-s3c2416/mach-smdk2416.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c2416/mach-smdk2416.c b/arch/arm/mach-s3c2416/mach-smdk2416.c index a51973c7334c..99d24c44f30f 100644 --- a/arch/arm/mach-s3c2416/mach-smdk2416.c +++ b/arch/arm/mach-s3c2416/mach-smdk2416.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/platform_device.h> | 21 | #include <linux/platform_device.h> |
22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
23 | #include <linux/mtd/partitions.h> | 23 | #include <linux/mtd/partitions.h> |
24 | #include <linux/gpio.h> | ||
24 | 25 | ||
25 | #include <asm/mach/arch.h> | 26 | #include <asm/mach/arch.h> |
26 | #include <asm/mach/map.h> | 27 | #include <asm/mach/map.h> |
@@ -110,6 +111,7 @@ static struct s3c2410_uartcfg smdk2416_uartcfgs[] __initdata = { | |||
110 | 111 | ||
111 | static struct platform_device *smdk2416_devices[] __initdata = { | 112 | static struct platform_device *smdk2416_devices[] __initdata = { |
112 | &s3c_device_wdt, | 113 | &s3c_device_wdt, |
114 | &s3c_device_ohci, | ||
113 | &s3c_device_i2c0, | 115 | &s3c_device_i2c0, |
114 | &s3c_device_hsmmc0, | 116 | &s3c_device_hsmmc0, |
115 | &s3c_device_hsmmc1, | 117 | &s3c_device_hsmmc1, |
@@ -128,6 +130,9 @@ static void __init smdk2416_machine_init(void) | |||
128 | { | 130 | { |
129 | s3c_i2c0_set_platdata(NULL); | 131 | s3c_i2c0_set_platdata(NULL); |
130 | 132 | ||
133 | gpio_request(S3C2410_GPB(4), "USBHost Power"); | ||
134 | gpio_direction_output(S3C2410_GPB(4), 1); | ||
135 | |||
131 | platform_add_devices(smdk2416_devices, ARRAY_SIZE(smdk2416_devices)); | 136 | platform_add_devices(smdk2416_devices, ARRAY_SIZE(smdk2416_devices)); |
132 | smdk_machine_init(); | 137 | smdk_machine_init(); |
133 | } | 138 | } |