diff options
Diffstat (limited to 'arch/mips/momentum/ocelot_c/uart-irq.c')
-rw-r--r-- | arch/mips/momentum/ocelot_c/uart-irq.c | 15 |
1 files changed, 7 insertions, 8 deletions
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) |