* [PATCH] mxser.c kernel-2.6.5
@ 2004-05-20 3:50 Vernon A. Fort
0 siblings, 0 replies; only message in thread
From: Vernon A. Fort @ 2004-05-20 3:50 UTC (permalink / raw)
To: linux-kernel; +Cc: torvalds
[-- Attachment #1: Type: text/plain, Size: 268 bytes --]
This patch adds support for the CP-104 Moxa Smartio serial cards -
fairly stright forward modification.
Attached is a short patch. Please CC me if any concerns or questions,
I'm not a subscribed member.
Thanks
Vernon Fort
Provident Solutions, LLC
(615) 427-4016
[-- Attachment #2: mxser.diff --]
[-- Type: text/plain, Size: 1533 bytes --]
--- linux-2.6.5/drivers/char/mxser.c 2004-05-19 22:17:16.000000000 -0500
+++ linux/drivers/char/mxser.c 2004-05-19 22:42:58.000000000 -0500
@@ -35,6 +35,8 @@
* Added support for: C102, CI-132, CI-134, CP-132, CP-114, CT-114 cards
* by Damian Wrobel <dwrobel@ertel.com.pl>
*
+ * Added support for serial card CP104
+ * by James Nelson Provident Solutions <linux-info@provident-solutions.com>
*/
#include <linux/config.h>
@@ -116,6 +118,9 @@
#ifndef PCI_DEVICE_ID_C104
#define PCI_DEVICE_ID_C104 0x1040
#endif
+#ifndef PCI_DEVICE_ID_CP104
+#define PCI_DEVICE_ID_CP104 0x1041
+#endif
#ifndef PCI_DEVICE_ID_CP132
#define PCI_DEVICE_ID_CP132 0x1320
#endif
@@ -139,6 +144,7 @@
MXSER_BOARD_CI104J,
MXSER_BOARD_C168_PCI,
MXSER_BOARD_C104_PCI,
+ MXSER_BOARD_CP104_PCI,
MXSER_BOARD_C102_ISA,
MXSER_BOARD_CI132,
MXSER_BOARD_CI134,
@@ -154,6 +160,7 @@
"CI-104J series",
"C168H/PCI series",
"C104H/PCI series",
+ "CP104/PCI series",
"C102 series",
"CI-132 series",
"CI-134 series",
@@ -169,6 +176,7 @@
4,
8,
4,
+ 4,
2,
2,
4,
@@ -195,6 +203,8 @@
MXSER_BOARD_C168_PCI },
{ PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_C104, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
MXSER_BOARD_C104_PCI },
+ { PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_CP104, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
+ MXSER_BOARD_CP104_PCI },
{ PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_CP132, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
MXSER_BOARD_CP132_PCI },
{ PCI_VENDOR_ID_MOXA, PCI_DEVICE_ID_CP114, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-05-20 3:50 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-05-20 3:50 [PATCH] mxser.c kernel-2.6.5 Vernon A. Fort
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox