diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-11-08 14:40:59 -0500 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2012-12-24 11:36:38 -0500 |
commit | 6bb27d7349db51b50c40534710fe164ca0d58902 (patch) | |
tree | 8f227c8bbf27b87275302dc133bb2b949b64622f /arch/arm/mach-gemini | |
parent | 7704c095230e2e9863f3aacd0489a4b4cc00bf45 (diff) |
ARM: delete struct sys_timer
Now that the only field in struct sys_timer is .init, delete the struct,
and replace the machine descriptor .timer field with the initialization
function itself.
This will enable moving timer drivers into drivers/clocksource without
having to place a public prototype of each struct sys_timer object into
include/linux; the intent is to create a single of_clocksource_init()
function that determines which timer driver to initialize by scanning
the device dtree, much like the proposed irqchip_init() at:
http://www.spinics.net/lists/arm-kernel/msg203686.html
Includes mach-omap2 fixes from Igor Grinberg.
Tested-by: Robert Jarzmik <robert.jarzmik@free.fr>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/mach-gemini')
-rw-r--r-- | arch/arm/mach-gemini/board-nas4220b.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-gemini/board-rut1xx.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-gemini/board-wbd111.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-gemini/board-wbd222.c | 6 |
4 files changed, 4 insertions, 20 deletions
diff --git a/arch/arm/mach-gemini/board-nas4220b.c b/arch/arm/mach-gemini/board-nas4220b.c index 5927d3c253aa..08bd650c42f3 100644 --- a/arch/arm/mach-gemini/board-nas4220b.c +++ b/arch/arm/mach-gemini/board-nas4220b.c | |||
@@ -31,10 +31,6 @@ | |||
31 | 31 | ||
32 | #include "common.h" | 32 | #include "common.h" |
33 | 33 | ||
34 | static struct sys_timer ib4220b_timer = { | ||
35 | .init = gemini_timer_init, | ||
36 | }; | ||
37 | |||
38 | static struct gpio_led ib4220b_leds[] = { | 34 | static struct gpio_led ib4220b_leds[] = { |
39 | { | 35 | { |
40 | .name = "nas4220b:orange:hdd", | 36 | .name = "nas4220b:orange:hdd", |
@@ -105,6 +101,6 @@ MACHINE_START(NAS4220B, "Raidsonic NAS IB-4220-B") | |||
105 | .atag_offset = 0x100, | 101 | .atag_offset = 0x100, |
106 | .map_io = gemini_map_io, | 102 | .map_io = gemini_map_io, |
107 | .init_irq = gemini_init_irq, | 103 | .init_irq = gemini_init_irq, |
108 | .timer = &ib4220b_timer, | 104 | .init_time = gemini_timer_init, |
109 | .init_machine = ib4220b_init, | 105 | .init_machine = ib4220b_init, |
110 | MACHINE_END | 106 | MACHINE_END |
diff --git a/arch/arm/mach-gemini/board-rut1xx.c b/arch/arm/mach-gemini/board-rut1xx.c index cd7437a1cea0..fa0a36337f4d 100644 --- a/arch/arm/mach-gemini/board-rut1xx.c +++ b/arch/arm/mach-gemini/board-rut1xx.c | |||
@@ -71,10 +71,6 @@ static struct platform_device rut1xx_leds = { | |||
71 | }, | 71 | }, |
72 | }; | 72 | }; |
73 | 73 | ||
74 | static struct sys_timer rut1xx_timer = { | ||
75 | .init = gemini_timer_init, | ||
76 | }; | ||
77 | |||
78 | static void __init rut1xx_init(void) | 74 | static void __init rut1xx_init(void) |
79 | { | 75 | { |
80 | gemini_gpio_init(); | 76 | gemini_gpio_init(); |
@@ -89,6 +85,6 @@ MACHINE_START(RUT100, "Teltonika RUT100") | |||
89 | .atag_offset = 0x100, | 85 | .atag_offset = 0x100, |
90 | .map_io = gemini_map_io, | 86 | .map_io = gemini_map_io, |
91 | .init_irq = gemini_init_irq, | 87 | .init_irq = gemini_init_irq, |
92 | .timer = &rut1xx_timer, | 88 | .init_time = gemini_timer_init, |
93 | .init_machine = rut1xx_init, | 89 | .init_machine = rut1xx_init, |
94 | MACHINE_END | 90 | MACHINE_END |
diff --git a/arch/arm/mach-gemini/board-wbd111.c b/arch/arm/mach-gemini/board-wbd111.c index a367880368f1..3321cd6cc1f3 100644 --- a/arch/arm/mach-gemini/board-wbd111.c +++ b/arch/arm/mach-gemini/board-wbd111.c | |||
@@ -80,10 +80,6 @@ static struct platform_device wbd111_leds_device = { | |||
80 | }, | 80 | }, |
81 | }; | 81 | }; |
82 | 82 | ||
83 | static struct sys_timer wbd111_timer = { | ||
84 | .init = gemini_timer_init, | ||
85 | }; | ||
86 | |||
87 | static struct mtd_partition wbd111_partitions[] = { | 83 | static struct mtd_partition wbd111_partitions[] = { |
88 | { | 84 | { |
89 | .name = "RedBoot", | 85 | .name = "RedBoot", |
@@ -132,6 +128,6 @@ MACHINE_START(WBD111, "Wiliboard WBD-111") | |||
132 | .atag_offset = 0x100, | 128 | .atag_offset = 0x100, |
133 | .map_io = gemini_map_io, | 129 | .map_io = gemini_map_io, |
134 | .init_irq = gemini_init_irq, | 130 | .init_irq = gemini_init_irq, |
135 | .timer = &wbd111_timer, | 131 | .init_time = gemini_timer_init, |
136 | .init_machine = wbd111_init, | 132 | .init_machine = wbd111_init, |
137 | MACHINE_END | 133 | MACHINE_END |
diff --git a/arch/arm/mach-gemini/board-wbd222.c b/arch/arm/mach-gemini/board-wbd222.c index f382811c1319..fe33c825fdaf 100644 --- a/arch/arm/mach-gemini/board-wbd222.c +++ b/arch/arm/mach-gemini/board-wbd222.c | |||
@@ -80,10 +80,6 @@ static struct platform_device wbd222_leds_device = { | |||
80 | }, | 80 | }, |
81 | }; | 81 | }; |
82 | 82 | ||
83 | static struct sys_timer wbd222_timer = { | ||
84 | .init = gemini_timer_init, | ||
85 | }; | ||
86 | |||
87 | static struct mtd_partition wbd222_partitions[] = { | 83 | static struct mtd_partition wbd222_partitions[] = { |
88 | { | 84 | { |
89 | .name = "RedBoot", | 85 | .name = "RedBoot", |
@@ -132,6 +128,6 @@ MACHINE_START(WBD222, "Wiliboard WBD-222") | |||
132 | .atag_offset = 0x100, | 128 | .atag_offset = 0x100, |
133 | .map_io = gemini_map_io, | 129 | .map_io = gemini_map_io, |
134 | .init_irq = gemini_init_irq, | 130 | .init_irq = gemini_init_irq, |
135 | .timer = &wbd222_timer, | 131 | .init_time = gemini_timer_init, |
136 | .init_machine = wbd222_init, | 132 | .init_machine = wbd222_init, |
137 | MACHINE_END | 133 | MACHINE_END |