[PATCH 2.6] fix register access typo in synclinkmp

From: Paul Fulghum
Date: Fri Mar 04 2005 - 12:12:44 EST


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

--
Paul Fulghum
paulkf@xxxxxxxxxxxxx

--- 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
*


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/