Messages in this thread Patch in this message |  | | Date | Thu, 21 Dec 2000 14:58:28 +0100 | From | Christian Gennerat <> | Subject | [PATCH] typo in toshoboe driver |
| |
with this error, receiving size was 0xf0f = 3855 instead of 0xfff = 4095 as specified
diff -Bbu /src/linux/drivers/net/irda/toshoboe.c.orig /src/linux/drivers/net/irda/toshoboe.c --- toshoboe.c.orig Mon Nov 13 13:11:37 2000 +++ toshoboe.c Thu Dec 21 14:47:54 2000 @@ -191,8 +191,8 @@ toshoboe_startchip (struct toshoboe_cb * outb_p (OBOE_NTR_VAL, OBOE_NTR); outb_p (0xf0, OBOE_REG_D); outb_p (0xff, OBOE_ISR); - outb_p (0x0f, OBOE_REG_1A); - outb_p (0xff, OBOE_REG_1B); + outb_p (0x0f, OBOE_REG_1B); + outb_p (0xff, OBOE_REG_1A);
physaddr = virt_to_bus (self->taskfile); --
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |