diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-08 12:00:02 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-08 12:00:02 -0400 |
| commit | c60ffcbb625cf7c570bfce904f0bb525ddeaba65 (patch) | |
| tree | 3f0589174777db37bf54ad5e61c8f11e9dbae4ae | |
| parent | 3546eea837bffb21f98c8e8529d3de3893fce651 (diff) | |
| parent | 07ad6ab3d79ede41cd8a69499e81df7b405635d2 (diff) | |
Merge branch 'omap-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
* 'omap-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6:
omap: drop __initdata tags from static struct platform_device declarations
| -rw-r--r-- | arch/arm/mach-omap1/board-ams-delta.c | 8 | ||||
| -rw-r--r-- | arch/arm/mach-omap1/gpio15xx.c | 4 | ||||
| -rw-r--r-- | arch/arm/mach-omap1/gpio16xx.c | 10 | ||||
| -rw-r--r-- | arch/arm/mach-omap1/gpio7xx.c | 14 | ||||
| -rw-r--r-- | arch/arm/mach-omap2/board-rx51-peripherals.c | 2 |
5 files changed, 19 insertions, 19 deletions
diff --git a/arch/arm/mach-omap1/board-ams-delta.c b/arch/arm/mach-omap1/board-ams-delta.c index de88c9297b68..f49ce85d2448 100644 --- a/arch/arm/mach-omap1/board-ams-delta.c +++ b/arch/arm/mach-omap1/board-ams-delta.c | |||
| @@ -215,7 +215,7 @@ static struct omap_kp_platform_data ams_delta_kp_data __initdata = { | |||
| 215 | .delay = 9, | 215 | .delay = 9, |
| 216 | }; | 216 | }; |
| 217 | 217 | ||
| 218 | static struct platform_device ams_delta_kp_device __initdata = { | 218 | static struct platform_device ams_delta_kp_device = { |
| 219 | .name = "omap-keypad", | 219 | .name = "omap-keypad", |
| 220 | .id = -1, | 220 | .id = -1, |
| 221 | .dev = { | 221 | .dev = { |
| @@ -225,12 +225,12 @@ static struct platform_device ams_delta_kp_device __initdata = { | |||
| 225 | .resource = ams_delta_kp_resources, | 225 | .resource = ams_delta_kp_resources, |
| 226 | }; | 226 | }; |
| 227 | 227 | ||
| 228 | static struct platform_device ams_delta_lcd_device __initdata = { | 228 | static struct platform_device ams_delta_lcd_device = { |
| 229 | .name = "lcd_ams_delta", | 229 | .name = "lcd_ams_delta", |
| 230 | .id = -1, | 230 | .id = -1, |
| 231 | }; | 231 | }; |
| 232 | 232 | ||
| 233 | static struct platform_device ams_delta_led_device __initdata = { | 233 | static struct platform_device ams_delta_led_device = { |
| 234 | .name = "ams-delta-led", | 234 | .name = "ams-delta-led", |
| 235 | .id = -1 | 235 | .id = -1 |
| 236 | }; | 236 | }; |
| @@ -267,7 +267,7 @@ static struct soc_camera_link ams_delta_iclink = { | |||
| 267 | .power = ams_delta_camera_power, | 267 | .power = ams_delta_camera_power, |
| 268 | }; | 268 | }; |
| 269 | 269 | ||
| 270 | static struct platform_device ams_delta_camera_device __initdata = { | 270 | static struct platform_device ams_delta_camera_device = { |
| 271 | .name = "soc-camera-pdrv", | 271 | .name = "soc-camera-pdrv", |
| 272 | .id = 0, | 272 | .id = 0, |
| 273 | .dev = { | 273 | .dev = { |
diff --git a/arch/arm/mach-omap1/gpio15xx.c b/arch/arm/mach-omap1/gpio15xx.c index 04c4b04cf54e..364137c2042c 100644 --- a/arch/arm/mach-omap1/gpio15xx.c +++ b/arch/arm/mach-omap1/gpio15xx.c | |||
| @@ -41,7 +41,7 @@ static struct __initdata omap_gpio_platform_data omap15xx_mpu_gpio_config = { | |||
| 41 | .bank_stride = 1, | 41 | .bank_stride = 1, |
| 42 | }; | 42 | }; |
| 43 | 43 | ||
| 44 | static struct __initdata platform_device omap15xx_mpu_gpio = { | 44 | static struct platform_device omap15xx_mpu_gpio = { |
| 45 | .name = "omap_gpio", | 45 | .name = "omap_gpio", |
| 46 | .id = 0, | 46 | .id = 0, |
| 47 | .dev = { | 47 | .dev = { |
| @@ -70,7 +70,7 @@ static struct __initdata omap_gpio_platform_data omap15xx_gpio_config = { | |||
| 70 | .bank_width = 16, | 70 | .bank_width = 16, |
| 71 | }; | 71 | }; |
| 72 | 72 | ||
| 73 | static struct __initdata platform_device omap15xx_gpio = { | 73 | static struct platform_device omap15xx_gpio = { |
| 74 | .name = "omap_gpio", | 74 | .name = "omap_gpio", |
| 75 | .id = 1, | 75 | .id = 1, |
| 76 | .dev = { | 76 | .dev = { |
diff --git a/arch/arm/mach-omap1/gpio16xx.c b/arch/arm/mach-omap1/gpio16xx.c index 5dd0d4c82b24..293a246e2824 100644 --- a/arch/arm/mach-omap1/gpio16xx.c +++ b/arch/arm/mach-omap1/gpio16xx.c | |||
| @@ -44,7 +44,7 @@ static struct __initdata omap_gpio_platform_data omap16xx_mpu_gpio_config = { | |||
| 44 | .bank_stride = 1, | 44 | .bank_stride = 1, |
| 45 | }; | 45 | }; |
| 46 | 46 | ||
| 47 | static struct __initdata platform_device omap16xx_mpu_gpio = { | 47 | static struct platform_device omap16xx_mpu_gpio = { |
| 48 | .name = "omap_gpio", | 48 | .name = "omap_gpio", |
| 49 | .id = 0, | 49 | .id = 0, |
| 50 | .dev = { | 50 | .dev = { |
| @@ -73,7 +73,7 @@ static struct __initdata omap_gpio_platform_data omap16xx_gpio1_config = { | |||
| 73 | .bank_width = 16, | 73 | .bank_width = 16, |
| 74 | }; | 74 | }; |
| 75 | 75 | ||
| 76 | static struct __initdata platform_device omap16xx_gpio1 = { | 76 | static struct platform_device omap16xx_gpio1 = { |
| 77 | .name = "omap_gpio", | 77 | .name = "omap_gpio", |
| 78 | .id = 1, | 78 | .id = 1, |
| 79 | .dev = { | 79 | .dev = { |
| @@ -102,7 +102,7 @@ static struct __initdata omap_gpio_platform_data omap16xx_gpio2_config = { | |||
| 102 | .bank_width = 16, | 102 | .bank_width = 16, |
| 103 | }; | 103 | }; |
| 104 | 104 | ||
| 105 | static struct __initdata platform_device omap16xx_gpio2 = { | 105 | static struct platform_device omap16xx_gpio2 = { |
| 106 | .name = "omap_gpio", | 106 | .name = "omap_gpio", |
| 107 | .id = 2, | 107 | .id = 2, |
| 108 | .dev = { | 108 | .dev = { |
| @@ -131,7 +131,7 @@ static struct __initdata omap_gpio_platform_data omap16xx_gpio3_config = { | |||
| 131 | .bank_width = 16, | 131 | .bank_width = 16, |
| 132 | }; | 132 | }; |
| 133 | 133 | ||
| 134 | static struct __initdata platform_device omap16xx_gpio3 = { | 134 | static struct platform_device omap16xx_gpio3 = { |
| 135 | .name = "omap_gpio", | 135 | .name = "omap_gpio", |
| 136 | .id = 3, | 136 | .id = 3, |
| 137 | .dev = { | 137 | .dev = { |
| @@ -160,7 +160,7 @@ static struct __initdata omap_gpio_platform_data omap16xx_gpio4_config = { | |||
| 160 | .bank_width = 16, | 160 | .bank_width = 16, |
| 161 | }; | 161 | }; |
| 162 | 162 | ||
| 163 | static struct __initdata platform_device omap16xx_gpio4 = { | 163 | static struct platform_device omap16xx_gpio4 = { |
| 164 | .name = "omap_gpio", | 164 | .name = "omap_gpio", |
| 165 | .id = 4, | 165 | .id = 4, |
| 166 | .dev = { | 166 | .dev = { |
diff --git a/arch/arm/mach-omap1/gpio7xx.c b/arch/arm/mach-omap1/gpio7xx.c index 1204c8b871af..c6ad248d63a6 100644 --- a/arch/arm/mach-omap1/gpio7xx.c +++ b/arch/arm/mach-omap1/gpio7xx.c | |||
| @@ -46,7 +46,7 @@ static struct __initdata omap_gpio_platform_data omap7xx_mpu_gpio_config = { | |||
| 46 | .bank_stride = 2, | 46 | .bank_stride = 2, |
| 47 | }; | 47 | }; |
| 48 | 48 | ||
| 49 | static struct __initdata platform_device omap7xx_mpu_gpio = { | 49 | static struct platform_device omap7xx_mpu_gpio = { |
| 50 | .name = "omap_gpio", | 50 | .name = "omap_gpio", |
| 51 | .id = 0, | 51 | .id = 0, |
| 52 | .dev = { | 52 | .dev = { |
| @@ -75,7 +75,7 @@ static struct __initdata omap_gpio_platform_data omap7xx_gpio1_config = { | |||
| 75 | .bank_width = 32, | 75 | .bank_width = 32, |
| 76 | }; | 76 | }; |
| 77 | 77 | ||
| 78 | static struct __initdata platform_device omap7xx_gpio1 = { | 78 | static struct platform_device omap7xx_gpio1 = { |
| 79 | .name = "omap_gpio", | 79 | .name = "omap_gpio", |
| 80 | .id = 1, | 80 | .id = 1, |
| 81 | .dev = { | 81 | .dev = { |
| @@ -104,7 +104,7 @@ static struct __initdata omap_gpio_platform_data omap7xx_gpio2_config = { | |||
| 104 | .bank_width = 32, | 104 | .bank_width = 32, |
| 105 | }; | 105 | }; |
| 106 | 106 | ||
| 107 | static struct __initdata platform_device omap7xx_gpio2 = { | 107 | static struct platform_device omap7xx_gpio2 = { |
| 108 | .name = "omap_gpio", | 108 | .name = "omap_gpio", |
| 109 | .id = 2, | 109 | .id = 2, |
| 110 | .dev = { | 110 | .dev = { |
| @@ -133,7 +133,7 @@ static struct __initdata omap_gpio_platform_data omap7xx_gpio3_config = { | |||
| 133 | .bank_width = 32, | 133 | .bank_width = 32, |
| 134 | }; | 134 | }; |
| 135 | 135 | ||
| 136 | static struct __initdata platform_device omap7xx_gpio3 = { | 136 | static struct platform_device omap7xx_gpio3 = { |
| 137 | .name = "omap_gpio", | 137 | .name = "omap_gpio", |
| 138 | .id = 3, | 138 | .id = 3, |
| 139 | .dev = { | 139 | .dev = { |
| @@ -162,7 +162,7 @@ static struct __initdata omap_gpio_platform_data omap7xx_gpio4_config = { | |||
| 162 | .bank_width = 32, | 162 | .bank_width = 32, |
| 163 | }; | 163 | }; |
| 164 | 164 | ||
| 165 | static struct __initdata platform_device omap7xx_gpio4 = { | 165 | static struct platform_device omap7xx_gpio4 = { |
| 166 | .name = "omap_gpio", | 166 | .name = "omap_gpio", |
| 167 | .id = 4, | 167 | .id = 4, |
| 168 | .dev = { | 168 | .dev = { |
| @@ -191,7 +191,7 @@ static struct __initdata omap_gpio_platform_data omap7xx_gpio5_config = { | |||
| 191 | .bank_width = 32, | 191 | .bank_width = 32, |
| 192 | }; | 192 | }; |
| 193 | 193 | ||
| 194 | static struct __initdata platform_device omap7xx_gpio5 = { | 194 | static struct platform_device omap7xx_gpio5 = { |
| 195 | .name = "omap_gpio", | 195 | .name = "omap_gpio", |
| 196 | .id = 5, | 196 | .id = 5, |
| 197 | .dev = { | 197 | .dev = { |
| @@ -220,7 +220,7 @@ static struct __initdata omap_gpio_platform_data omap7xx_gpio6_config = { | |||
| 220 | .bank_width = 32, | 220 | .bank_width = 32, |
| 221 | }; | 221 | }; |
| 222 | 222 | ||
| 223 | static struct __initdata platform_device omap7xx_gpio6 = { | 223 | static struct platform_device omap7xx_gpio6 = { |
| 224 | .name = "omap_gpio", | 224 | .name = "omap_gpio", |
| 225 | .id = 6, | 225 | .id = 6, |
| 226 | .dev = { | 226 | .dev = { |
diff --git a/arch/arm/mach-omap2/board-rx51-peripherals.c b/arch/arm/mach-omap2/board-rx51-peripherals.c index 990366726c58..88bd6f7705f0 100644 --- a/arch/arm/mach-omap2/board-rx51-peripherals.c +++ b/arch/arm/mach-omap2/board-rx51-peripherals.c | |||
| @@ -558,7 +558,7 @@ static struct radio_si4713_platform_data rx51_si4713_data __initdata_or_module = | |||
| 558 | .subdev_board_info = &rx51_si4713_board_info, | 558 | .subdev_board_info = &rx51_si4713_board_info, |
| 559 | }; | 559 | }; |
| 560 | 560 | ||
| 561 | static struct platform_device rx51_si4713_dev __initdata_or_module = { | 561 | static struct platform_device rx51_si4713_dev = { |
| 562 | .name = "radio-si4713", | 562 | .name = "radio-si4713", |
| 563 | .id = -1, | 563 | .id = -1, |
| 564 | .dev = { | 564 | .dev = { |
