diff options
Diffstat (limited to 'drivers/net/ibm_emac/ibm_emac_mal.c')
-rw-r--r-- | drivers/net/ibm_emac/ibm_emac_mal.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/ibm_emac/ibm_emac_mal.c b/drivers/net/ibm_emac/ibm_emac_mal.c index af50e7b2e0d..6c0f071e405 100644 --- a/drivers/net/ibm_emac/ibm_emac_mal.c +++ b/drivers/net/ibm_emac/ibm_emac_mal.c | |||
@@ -168,7 +168,7 @@ static inline void mal_disable_eob_irq(struct ibm_ocp_mal *mal) | |||
168 | MAL_DBG2("%d: disable_irq" NL, mal->def->index); | 168 | MAL_DBG2("%d: disable_irq" NL, mal->def->index); |
169 | } | 169 | } |
170 | 170 | ||
171 | static irqreturn_t mal_serr(int irq, void *dev_instance, struct pt_regs *regs) | 171 | static irqreturn_t mal_serr(int irq, void *dev_instance) |
172 | { | 172 | { |
173 | struct ibm_ocp_mal *mal = dev_instance; | 173 | struct ibm_ocp_mal *mal = dev_instance; |
174 | u32 esr = get_mal_dcrn(mal, MAL_ESR); | 174 | u32 esr = get_mal_dcrn(mal, MAL_ESR); |
@@ -216,7 +216,7 @@ static inline void mal_schedule_poll(struct ibm_ocp_mal *mal) | |||
216 | MAL_DBG2("%d: already in poll" NL, mal->def->index); | 216 | MAL_DBG2("%d: already in poll" NL, mal->def->index); |
217 | } | 217 | } |
218 | 218 | ||
219 | static irqreturn_t mal_txeob(int irq, void *dev_instance, struct pt_regs *regs) | 219 | static irqreturn_t mal_txeob(int irq, void *dev_instance) |
220 | { | 220 | { |
221 | struct ibm_ocp_mal *mal = dev_instance; | 221 | struct ibm_ocp_mal *mal = dev_instance; |
222 | u32 r = get_mal_dcrn(mal, MAL_TXEOBISR); | 222 | u32 r = get_mal_dcrn(mal, MAL_TXEOBISR); |
@@ -226,7 +226,7 @@ static irqreturn_t mal_txeob(int irq, void *dev_instance, struct pt_regs *regs) | |||
226 | return IRQ_HANDLED; | 226 | return IRQ_HANDLED; |
227 | } | 227 | } |
228 | 228 | ||
229 | static irqreturn_t mal_rxeob(int irq, void *dev_instance, struct pt_regs *regs) | 229 | static irqreturn_t mal_rxeob(int irq, void *dev_instance) |
230 | { | 230 | { |
231 | struct ibm_ocp_mal *mal = dev_instance; | 231 | struct ibm_ocp_mal *mal = dev_instance; |
232 | u32 r = get_mal_dcrn(mal, MAL_RXEOBISR); | 232 | u32 r = get_mal_dcrn(mal, MAL_RXEOBISR); |
@@ -236,7 +236,7 @@ static irqreturn_t mal_rxeob(int irq, void *dev_instance, struct pt_regs *regs) | |||
236 | return IRQ_HANDLED; | 236 | return IRQ_HANDLED; |
237 | } | 237 | } |
238 | 238 | ||
239 | static irqreturn_t mal_txde(int irq, void *dev_instance, struct pt_regs *regs) | 239 | static irqreturn_t mal_txde(int irq, void *dev_instance) |
240 | { | 240 | { |
241 | struct ibm_ocp_mal *mal = dev_instance; | 241 | struct ibm_ocp_mal *mal = dev_instance; |
242 | u32 deir = get_mal_dcrn(mal, MAL_TXDEIR); | 242 | u32 deir = get_mal_dcrn(mal, MAL_TXDEIR); |
@@ -252,7 +252,7 @@ static irqreturn_t mal_txde(int irq, void *dev_instance, struct pt_regs *regs) | |||
252 | return IRQ_HANDLED; | 252 | return IRQ_HANDLED; |
253 | } | 253 | } |
254 | 254 | ||
255 | static irqreturn_t mal_rxde(int irq, void *dev_instance, struct pt_regs *regs) | 255 | static irqreturn_t mal_rxde(int irq, void *dev_instance) |
256 | { | 256 | { |
257 | struct ibm_ocp_mal *mal = dev_instance; | 257 | struct ibm_ocp_mal *mal = dev_instance; |
258 | struct list_head *l; | 258 | struct list_head *l; |