diff options
author | Willy Tarreau <w@1wt.eu> | 2007-02-17 12:57:09 -0500 |
---|---|---|
committer | Adrian Bunk <bunk@stusta.de> | 2007-02-17 12:57:09 -0500 |
commit | 88dacbe961aa63fa880b4f6f16515427f61fc3ca (patch) | |
tree | 8431bf7a9665144aea0970f10565e683a5bbce7c | |
parent | 8a03d9a498eaf02c8a118752050a5154852c13bf (diff) |
rio: typo in bitwise AND expression.
The line :
hp->Mode &= !RIO_PCI_INT_ENABLE;
is obviously wrong as RIO_PCI_INT_ENABLE=0x04 and is used as a bitmask
2 lines before. Getting no IRQ would not disable RIO_PCI_INT_ENABLE
but rather RIO_PCI_BOOT_FROM_RAM which equals 0x01.
Obvious fix is to change ! for ~.
Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
-rw-r--r-- | drivers/char/rio/rio_linux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/rio/rio_linux.c b/drivers/char/rio/rio_linux.c index 85c161845260..294e9cb0c449 100644 --- a/drivers/char/rio/rio_linux.c +++ b/drivers/char/rio/rio_linux.c | |||
@@ -1146,7 +1146,7 @@ static int __init rio_init(void) | |||
1146 | rio_dprintk(RIO_DEBUG_INIT, "Enabling interrupts on rio card.\n"); | 1146 | rio_dprintk(RIO_DEBUG_INIT, "Enabling interrupts on rio card.\n"); |
1147 | hp->Mode |= RIO_PCI_INT_ENABLE; | 1147 | hp->Mode |= RIO_PCI_INT_ENABLE; |
1148 | } else | 1148 | } else |
1149 | hp->Mode &= !RIO_PCI_INT_ENABLE; | 1149 | hp->Mode &= ~RIO_PCI_INT_ENABLE; |
1150 | rio_dprintk(RIO_DEBUG_INIT, "New Mode: %x\n", hp->Mode); | 1150 | rio_dprintk(RIO_DEBUG_INIT, "New Mode: %x\n", hp->Mode); |
1151 | rio_start_card_running(hp); | 1151 | rio_start_card_running(hp); |
1152 | } | 1152 | } |