diff options
author | Hirokazu Takata <takata@linux-m32r.org> | 2005-06-21 20:16:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-21 22:07:31 -0400 |
commit | 0adbb44a146d6dff3f74ea7a9d3826f8942ed709 (patch) | |
tree | 0876bf3ec1c618ed8d0ba1fc2638fd8c8d804e96 /drivers | |
parent | 1cc1265e9a8579be0029cd675ec22a6151893e04 (diff) |
[PATCH] m32r: Remove include/asm-m32r/m32102peri.h
This patch removes an obsolete header file include/asm-m32r/m32102peri.h.
In this header, there are some undesirable single character types, like V.
And the header is almost no longer used.
Signed-off-by: Hayato Fujiwara <fujiwara@linux-m32r.org>
Signed-off-by: Hirokazu Takata <takata@linux-m32r.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/8390.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/8390.c b/drivers/net/8390.c index bab16bcc9ae5..6d76f3a99b17 100644 --- a/drivers/net/8390.c +++ b/drivers/net/8390.c | |||
@@ -225,9 +225,9 @@ void ei_tx_timeout(struct net_device *dev) | |||
225 | unsigned long icucr; | 225 | unsigned long icucr; |
226 | 226 | ||
227 | local_irq_save(flags); | 227 | local_irq_save(flags); |
228 | icucr = inl(ICUCR1); | 228 | icucr = inl(M32R_ICU_CR1_PORTL); |
229 | icucr |= M32R_ICUCR_ISMOD11; | 229 | icucr |= M32R_ICUCR_ISMOD11; |
230 | outl(icucr, ICUCR1); | 230 | outl(icucr, M32R_ICU_CR1_PORTL); |
231 | local_irq_restore(flags); | 231 | local_irq_restore(flags); |
232 | #endif | 232 | #endif |
233 | ei_local->stat.tx_errors++; | 233 | ei_local->stat.tx_errors++; |