diff options
Diffstat (limited to 'arch/arm/mach-ixp4xx/dsmg600-setup.c')
-rw-r--r-- | arch/arm/mach-ixp4xx/dsmg600-setup.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/arch/arm/mach-ixp4xx/dsmg600-setup.c b/arch/arm/mach-ixp4xx/dsmg600-setup.c index 1e75e105c4f7..c473d408aa7c 100644 --- a/arch/arm/mach-ixp4xx/dsmg600-setup.c +++ b/arch/arm/mach-ixp4xx/dsmg600-setup.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/serial.h> | 15 | #include <linux/serial.h> |
16 | #include <linux/serial_8250.h> | 16 | #include <linux/serial_8250.h> |
17 | #include <linux/i2c-gpio.h> | ||
17 | 18 | ||
18 | #include <asm/mach-types.h> | 19 | #include <asm/mach-types.h> |
19 | #include <asm/mach/arch.h> | 20 | #include <asm/mach/arch.h> |
@@ -37,15 +38,17 @@ static struct platform_device dsmg600_flash = { | |||
37 | .resource = &dsmg600_flash_resource, | 38 | .resource = &dsmg600_flash_resource, |
38 | }; | 39 | }; |
39 | 40 | ||
40 | static struct ixp4xx_i2c_pins dsmg600_i2c_gpio_pins = { | 41 | static struct i2c_gpio_platform_data dsmg600_i2c_gpio_data = { |
41 | .sda_pin = DSMG600_SDA_PIN, | 42 | .sda_pin = DSMG600_SDA_PIN, |
42 | .scl_pin = DSMG600_SCL_PIN, | 43 | .scl_pin = DSMG600_SCL_PIN, |
43 | }; | 44 | }; |
44 | 45 | ||
45 | static struct platform_device dsmg600_i2c_controller = { | 46 | static struct platform_device dsmg600_i2c_gpio = { |
46 | .name = "IXP4XX-I2C", | 47 | .name = "i2c-gpio", |
47 | .id = 0, | 48 | .id = 0, |
48 | .dev.platform_data = &dsmg600_i2c_gpio_pins, | 49 | .dev = { |
50 | .platform_data = &dsmg600_i2c_gpio_data, | ||
51 | }, | ||
49 | }; | 52 | }; |
50 | 53 | ||
51 | #ifdef CONFIG_LEDS_CLASS | 54 | #ifdef CONFIG_LEDS_CLASS |
@@ -116,7 +119,7 @@ static struct platform_device dsmg600_uart = { | |||
116 | }; | 119 | }; |
117 | 120 | ||
118 | static struct platform_device *dsmg600_devices[] __initdata = { | 121 | static struct platform_device *dsmg600_devices[] __initdata = { |
119 | &dsmg600_i2c_controller, | 122 | &dsmg600_i2c_gpio, |
120 | &dsmg600_flash, | 123 | &dsmg600_flash, |
121 | }; | 124 | }; |
122 | 125 | ||