diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-11 21:23:44 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-11 21:23:44 -0500 |
| commit | 2934578e28be0a0b338ce701d3d87a4a6b0ff03b (patch) | |
| tree | 786162549311a33af304a2392628303740b75e88 | |
| parent | 2612c49db3808f976ba12eed4170917f49693ac1 (diff) | |
| parent | a6d30e0fffb32ab9e48fa7fc8f463805d5b0bddb (diff) | |
Merge branch 'x86-platform-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 platform fixlet from Ingo Molnar:
"A single __initdata fix"
* 'x86-platform-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/geode: Fix incorrect placement of __initdata tag
| -rw-r--r-- | arch/x86/platform/geode/alix.c | 2 | ||||
| -rw-r--r-- | arch/x86/platform/geode/geos.c | 2 | ||||
| -rw-r--r-- | arch/x86/platform/geode/net5501.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/platform/geode/alix.c b/arch/x86/platform/geode/alix.c index 90e23e7679a5..76b6632d3143 100644 --- a/arch/x86/platform/geode/alix.c +++ b/arch/x86/platform/geode/alix.c | |||
| @@ -98,7 +98,7 @@ static struct platform_device alix_leds_dev = { | |||
| 98 | .dev.platform_data = &alix_leds_data, | 98 | .dev.platform_data = &alix_leds_data, |
| 99 | }; | 99 | }; |
| 100 | 100 | ||
| 101 | static struct __initdata platform_device *alix_devs[] = { | 101 | static struct platform_device *alix_devs[] __initdata = { |
| 102 | &alix_buttons_dev, | 102 | &alix_buttons_dev, |
| 103 | &alix_leds_dev, | 103 | &alix_leds_dev, |
| 104 | }; | 104 | }; |
diff --git a/arch/x86/platform/geode/geos.c b/arch/x86/platform/geode/geos.c index c2e6d53558be..aa733fba2471 100644 --- a/arch/x86/platform/geode/geos.c +++ b/arch/x86/platform/geode/geos.c | |||
| @@ -87,7 +87,7 @@ static struct platform_device geos_leds_dev = { | |||
| 87 | .dev.platform_data = &geos_leds_data, | 87 | .dev.platform_data = &geos_leds_data, |
| 88 | }; | 88 | }; |
| 89 | 89 | ||
| 90 | static struct __initdata platform_device *geos_devs[] = { | 90 | static struct platform_device *geos_devs[] __initdata = { |
| 91 | &geos_buttons_dev, | 91 | &geos_buttons_dev, |
| 92 | &geos_leds_dev, | 92 | &geos_leds_dev, |
| 93 | }; | 93 | }; |
diff --git a/arch/x86/platform/geode/net5501.c b/arch/x86/platform/geode/net5501.c index 646e3b5b4bb6..927e38c0089f 100644 --- a/arch/x86/platform/geode/net5501.c +++ b/arch/x86/platform/geode/net5501.c | |||
| @@ -78,7 +78,7 @@ static struct platform_device net5501_leds_dev = { | |||
| 78 | .dev.platform_data = &net5501_leds_data, | 78 | .dev.platform_data = &net5501_leds_data, |
| 79 | }; | 79 | }; |
| 80 | 80 | ||
| 81 | static struct __initdata platform_device *net5501_devs[] = { | 81 | static struct platform_device *net5501_devs[] __initdata = { |
| 82 | &net5501_buttons_dev, | 82 | &net5501_buttons_dev, |
| 83 | &net5501_leds_dev, | 83 | &net5501_leds_dev, |
| 84 | }; | 84 | }; |
