diff options
Diffstat (limited to 'arch/mips/momentum/ocelot_c')
-rw-r--r-- | arch/mips/momentum/ocelot_c/cpci-irq.c | 15 | ||||
-rw-r--r-- | arch/mips/momentum/ocelot_c/setup.c | 4 | ||||
-rw-r--r-- | arch/mips/momentum/ocelot_c/uart-irq.c | 15 |
3 files changed, 15 insertions, 19 deletions
diff --git a/arch/mips/momentum/ocelot_c/cpci-irq.c b/arch/mips/momentum/ocelot_c/cpci-irq.c index dea48b3ad687..bd885785e2f9 100644 --- a/arch/mips/momentum/ocelot_c/cpci-irq.c +++ b/arch/mips/momentum/ocelot_c/cpci-irq.c | |||
@@ -129,14 +129,13 @@ void ll_cpci_irq(struct pt_regs *regs) | |||
129 | #define shutdown_cpci_irq disable_cpci_irq | 129 | #define shutdown_cpci_irq disable_cpci_irq |
130 | 130 | ||
131 | struct hw_interrupt_type cpci_irq_type = { | 131 | struct hw_interrupt_type cpci_irq_type = { |
132 | "CPCI/FPGA", | 132 | .typename = "CPCI/FPGA", |
133 | startup_cpci_irq, | 133 | .startup = startup_cpci_irq, |
134 | shutdown_cpci_irq, | 134 | .shutdown = shutdown_cpci_irq, |
135 | enable_cpci_irq, | 135 | .enable = enable_cpci_irq, |
136 | disable_cpci_irq, | 136 | .disable = disable_cpci_irq, |
137 | mask_and_ack_cpci_irq, | 137 | .ack = mask_and_ack_cpci_irq, |
138 | end_cpci_irq, | 138 | .end = end_cpci_irq, |
139 | NULL | ||
140 | }; | 139 | }; |
141 | 140 | ||
142 | void cpci_irq_init(void) | 141 | void cpci_irq_init(void) |
diff --git a/arch/mips/momentum/ocelot_c/setup.c b/arch/mips/momentum/ocelot_c/setup.c index 844ddd06349b..ce70fc96f160 100644 --- a/arch/mips/momentum/ocelot_c/setup.c +++ b/arch/mips/momentum/ocelot_c/setup.c | |||
@@ -222,7 +222,7 @@ void momenco_time_init(void) | |||
222 | rtc_set_time = m48t37y_set_time; | 222 | rtc_set_time = m48t37y_set_time; |
223 | } | 223 | } |
224 | 224 | ||
225 | static void __init momenco_ocelot_c_setup(void) | 225 | void __init plat_setup(void) |
226 | { | 226 | { |
227 | unsigned int tmpword; | 227 | unsigned int tmpword; |
228 | 228 | ||
@@ -340,8 +340,6 @@ static void __init momenco_ocelot_c_setup(void) | |||
340 | } | 340 | } |
341 | } | 341 | } |
342 | 342 | ||
343 | early_initcall(momenco_ocelot_c_setup); | ||
344 | |||
345 | #ifndef CONFIG_64BIT | 343 | #ifndef CONFIG_64BIT |
346 | /* This needs to be one of the first initcalls, because no I/O port access | 344 | /* This needs to be one of the first initcalls, because no I/O port access |
347 | can work before this */ | 345 | can work before this */ |
diff --git a/arch/mips/momentum/ocelot_c/uart-irq.c b/arch/mips/momentum/ocelot_c/uart-irq.c index ebe1507b17df..755bde5146be 100644 --- a/arch/mips/momentum/ocelot_c/uart-irq.c +++ b/arch/mips/momentum/ocelot_c/uart-irq.c | |||
@@ -122,14 +122,13 @@ void ll_uart_irq(struct pt_regs *regs) | |||
122 | #define shutdown_uart_irq disable_uart_irq | 122 | #define shutdown_uart_irq disable_uart_irq |
123 | 123 | ||
124 | struct hw_interrupt_type uart_irq_type = { | 124 | struct hw_interrupt_type uart_irq_type = { |
125 | "UART/FPGA", | 125 | .typename = "UART/FPGA", |
126 | startup_uart_irq, | 126 | .startup = startup_uart_irq, |
127 | shutdown_uart_irq, | 127 | .shutdown = shutdown_uart_irq, |
128 | enable_uart_irq, | 128 | .enable = enable_uart_irq, |
129 | disable_uart_irq, | 129 | .disable = disable_uart_irq, |
130 | mask_and_ack_uart_irq, | 130 | .ack = mask_and_ack_uart_irq, |
131 | end_uart_irq, | 131 | .end = end_uart_irq, |
132 | NULL | ||
133 | }; | 132 | }; |
134 | 133 | ||
135 | void uart_irq_init(void) | 134 | void uart_irq_init(void) |