linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] typo in toshoboe driver
@ 2000-12-21 13:58 Christian Gennerat
  0 siblings, 0 replies; only message in thread
From: Christian Gennerat @ 2000-12-21 13:58 UTC (permalink / raw)
  To: linux-kernel, list-ir, James

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/

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2000-12-21 14:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-12-21 13:58 [PATCH] typo in toshoboe driver Christian Gennerat

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).