diff options
Diffstat (limited to 'arch/arm/mach-s3c2410/mach-qt2410.c')
-rw-r--r-- | arch/arm/mach-s3c2410/mach-qt2410.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/arch/arm/mach-s3c2410/mach-qt2410.c b/arch/arm/mach-s3c2410/mach-qt2410.c index 9f1ba9b63f70..2cc9849eb448 100644 --- a/arch/arm/mach-s3c2410/mach-qt2410.c +++ b/arch/arm/mach-s3c2410/mach-qt2410.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/list.h> | 27 | #include <linux/list.h> |
28 | #include <linux/timer.h> | 28 | #include <linux/timer.h> |
29 | #include <linux/init.h> | 29 | #include <linux/init.h> |
30 | #include <linux/gpio.h> | ||
30 | #include <linux/sysdev.h> | 31 | #include <linux/sysdev.h> |
31 | #include <linux/platform_device.h> | 32 | #include <linux/platform_device.h> |
32 | #include <linux/serial_core.h> | 33 | #include <linux/serial_core.h> |
@@ -198,7 +199,7 @@ static struct platform_device qt2410_cs89x0 = { | |||
198 | /* LED */ | 199 | /* LED */ |
199 | 200 | ||
200 | static struct s3c24xx_led_platdata qt2410_pdata_led = { | 201 | static struct s3c24xx_led_platdata qt2410_pdata_led = { |
201 | .gpio = S3C2410_GPB0, | 202 | .gpio = S3C2410_GPB(0), |
202 | .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, | 203 | .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, |
203 | .name = "led", | 204 | .name = "led", |
204 | .def_trigger = "timer", | 205 | .def_trigger = "timer", |
@@ -218,18 +219,18 @@ static void spi_gpio_cs(struct s3c2410_spigpio_info *spi, int cs) | |||
218 | { | 219 | { |
219 | switch (cs) { | 220 | switch (cs) { |
220 | case BITBANG_CS_ACTIVE: | 221 | case BITBANG_CS_ACTIVE: |
221 | s3c2410_gpio_setpin(S3C2410_GPB5, 0); | 222 | s3c2410_gpio_setpin(S3C2410_GPB(5), 0); |
222 | break; | 223 | break; |
223 | case BITBANG_CS_INACTIVE: | 224 | case BITBANG_CS_INACTIVE: |
224 | s3c2410_gpio_setpin(S3C2410_GPB5, 1); | 225 | s3c2410_gpio_setpin(S3C2410_GPB(5), 1); |
225 | break; | 226 | break; |
226 | } | 227 | } |
227 | } | 228 | } |
228 | 229 | ||
229 | static struct s3c2410_spigpio_info spi_gpio_cfg = { | 230 | static struct s3c2410_spigpio_info spi_gpio_cfg = { |
230 | .pin_clk = S3C2410_GPG7, | 231 | .pin_clk = S3C2410_GPG(7), |
231 | .pin_mosi = S3C2410_GPG6, | 232 | .pin_mosi = S3C2410_GPG(6), |
232 | .pin_miso = S3C2410_GPG5, | 233 | .pin_miso = S3C2410_GPG(5), |
233 | .chip_select = &spi_gpio_cs, | 234 | .chip_select = &spi_gpio_cs, |
234 | }; | 235 | }; |
235 | 236 | ||
@@ -346,13 +347,13 @@ static void __init qt2410_machine_init(void) | |||
346 | } | 347 | } |
347 | s3c24xx_fb_set_platdata(&qt2410_fb_info); | 348 | s3c24xx_fb_set_platdata(&qt2410_fb_info); |
348 | 349 | ||
349 | s3c2410_gpio_cfgpin(S3C2410_GPB0, S3C2410_GPIO_OUTPUT); | 350 | s3c2410_gpio_cfgpin(S3C2410_GPB(0), S3C2410_GPIO_OUTPUT); |
350 | s3c2410_gpio_setpin(S3C2410_GPB0, 1); | 351 | s3c2410_gpio_setpin(S3C2410_GPB(0), 1); |
351 | 352 | ||
352 | s3c24xx_udc_set_platdata(&qt2410_udc_cfg); | 353 | s3c24xx_udc_set_platdata(&qt2410_udc_cfg); |
353 | s3c_i2c0_set_platdata(NULL); | 354 | s3c_i2c0_set_platdata(NULL); |
354 | 355 | ||
355 | s3c2410_gpio_cfgpin(S3C2410_GPB5, S3C2410_GPIO_OUTPUT); | 356 | s3c2410_gpio_cfgpin(S3C2410_GPB(5), S3C2410_GPIO_OUTPUT); |
356 | 357 | ||
357 | platform_add_devices(qt2410_devices, ARRAY_SIZE(qt2410_devices)); | 358 | platform_add_devices(qt2410_devices, ARRAY_SIZE(qt2410_devices)); |
358 | s3c_pm_init(); | 359 | s3c_pm_init(); |