public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2.6] fix register access typo in synclinkmp
@ 2005-03-04 17:06 Paul Fulghum
  0 siblings, 0 replies; only message in thread
From: Paul Fulghum @ 2005-03-04 17:06 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

Fix register access typo in synclinkmp.c
that caused value to be written to wrong register.

-- 
Paul Fulghum
paulkf@microgate.com

--- linux-2.6.11/drivers/char/synclinkmp.c	2005-03-02 01:37:50.000000000 -0600
+++ linux-2.6.11-mg/drivers/char/synclinkmp.c	2005-03-04 11:02:29.000000000 -0600
@@ -1,5 +1,5 @@
 /*
- * $Id: synclinkmp.c,v 4.29 2004/08/27 20:06:41 paulkf Exp $
+ * $Id: synclinkmp.c,v 4.34 2005/03/04 15:07:10 paulkf Exp $
  *
  * Device driver for Microgate SyncLink Multiport
  * high speed multiprotocol serial adapter.
@@ -487,7 +487,7 @@ module_param_array(maxframe, int, NULL, 
 module_param_array(dosyncppp, int, NULL, 0);
 
 static char *driver_name = "SyncLink MultiPort driver";
-static char *driver_version = "$Revision: 4.29 $";
+static char *driver_version = "$Revision: 4.34 $";
 
 static int synclinkmp_init_one(struct pci_dev *dev,const struct pci_device_id *ent);
 static void synclinkmp_remove_one(struct pci_dev *dev);
@@ -4528,7 +4528,7 @@ void async_mode(SLMP_INFO *info)
 	 * 07..05  Reserved, must be 0
 	 * 04..00  RRC<4..0> Rx FIFO trigger active 0x00 = 1 byte
 	 */
-	write_reg(info, TRC0, 0x00);
+	write_reg(info, RRC, 0x00);
 
 	/* TRC0 Transmit Ready Control 0
 	 *



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

only message in thread, other threads:[~2005-03-04 17:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-04 17:06 [PATCH 2.6] fix register access typo in synclinkmp Paul Fulghum

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox