linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Christian Gennerat <christian.gennerat@alcatel.fr>
To: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	list-ir <linux-irda@pasta.cs.UiT.No>,
	James <james@fishsoup.dhs.org>
Subject: [PATCH] typo in toshoboe driver
Date: Thu, 21 Dec 2000 14:58:28 +0100	[thread overview]
Message-ID: <3A420C83.79DF61A8@alcatel.fr> (raw)

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/

                 reply	other threads:[~2000-12-21 14:31 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3A420C83.79DF61A8@alcatel.fr \
    --to=christian.gennerat@alcatel.fr \
    --cc=christian.gennerat@vz.cit.alcatel.fr \
    --cc=james@fishsoup.dhs.org \
    --cc=linux-irda@pasta.cs.UiT.No \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).