mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-05 18:59:58 +00:00
[PATCH] powerpc/cell spidernet bogus rx interrupt bit
The current receive interrupt mask sets a bogus bit that doesn't even belong to the definition of this register. Remove it. Signed-off-by: Linas Vepstas <linas@austin.ibm.com> Cc: James K Lewis <jklewis@us.ibm.com> Cc: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
313ef4b76c
commit
43932d938d
1 changed files with 2 additions and 3 deletions
|
@ -332,9 +332,8 @@ enum spider_net_int2_status {
|
||||||
(1 << SPIDER_NET_GDTDCEINT) | \
|
(1 << SPIDER_NET_GDTDCEINT) | \
|
||||||
(1 << SPIDER_NET_GDTFDCINT) )
|
(1 << SPIDER_NET_GDTFDCINT) )
|
||||||
|
|
||||||
/* we rely on flagged descriptor interrupts*/
|
/* We rely on flagged descriptor interrupts */
|
||||||
#define SPIDER_NET_RXINT ( (1 << SPIDER_NET_GDAFDCINT) | \
|
#define SPIDER_NET_RXINT ( (1 << SPIDER_NET_GDAFDCINT) )
|
||||||
(1 << SPIDER_NET_GRMFLLINT) )
|
|
||||||
|
|
||||||
#define SPIDER_NET_ERRINT ( 0xffffffff & \
|
#define SPIDER_NET_ERRINT ( 0xffffffff & \
|
||||||
(~SPIDER_NET_TXINT) & \
|
(~SPIDER_NET_TXINT) & \
|
||||||
|
|
Loading…
Reference in a new issue