diff options
author | Hirokazu Takata <takata@linux-m32r.org> | 2007-07-26 13:41:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-26 14:35:20 -0400 |
commit | 4fc09385c79fa95e97365d33de9b4e046d680b94 (patch) | |
tree | 961d42af4fd22ae01cfef355c39fc98276958862 /drivers/net/lib8390.c | |
parent | b5445f956ec3c8c19b760775e9ff92a160e3a167 (diff) |
m32r: Fix ei_tx_timeout() in drivers/net/lib8390.c
Change INT0 trigger mode from edge-sense mode to level-sense mode,
in order to fix the following timeout error:
'NETDEV WATCHDOG: eth0: transmit timed out'.
This patch is required only for the Mappi platform.
Signed-off-by: Hirokazu Takata <takata@linux-m32r.org>
Cc: Hitoshi Yamamoto <hitoshiy@linux-m32r.org>
Cc: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/net/lib8390.c')
-rw-r--r-- | drivers/net/lib8390.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/net/lib8390.c b/drivers/net/lib8390.c index 5c86e737f954..721ee38d2241 100644 --- a/drivers/net/lib8390.c +++ b/drivers/net/lib8390.c | |||
@@ -219,15 +219,6 @@ static void ei_tx_timeout(struct net_device *dev) | |||
219 | int txsr, isr, tickssofar = jiffies - dev->trans_start; | 219 | int txsr, isr, tickssofar = jiffies - dev->trans_start; |
220 | unsigned long flags; | 220 | unsigned long flags; |
221 | 221 | ||
222 | #if defined(CONFIG_M32R) && defined(CONFIG_SMP) | ||
223 | unsigned long icucr; | ||
224 | |||
225 | local_irq_save(flags); | ||
226 | icucr = inl(M32R_ICU_CR1_PORTL); | ||
227 | icucr |= M32R_ICUCR_ISMOD11; | ||
228 | outl(icucr, M32R_ICU_CR1_PORTL); | ||
229 | local_irq_restore(flags); | ||
230 | #endif | ||
231 | ei_local->stat.tx_errors++; | 222 | ei_local->stat.tx_errors++; |
232 | 223 | ||
233 | spin_lock_irqsave(&ei_local->page_lock, flags); | 224 | spin_lock_irqsave(&ei_local->page_lock, flags); |