[PATCH] pnp id size fix (1/6)

From: Adam Belay (ambx1@neo.rr.com)
Date: Sat Jan 25 2003 - 15:15:14 EST


This patch sets the id size to 8, not 7.

-Adam

--- a/include/linux/pnp.h Tue Jan 14 05:59:30 2003
+++ b/include/linux/pnp.h Fri Jan 17 14:02:33 2003
@@ -23,6 +23,7 @@
 #define DEVICE_COUNT_IO 8
 #define DEVICE_COUNT_MEM 4
 #define MAX_DEVICES 8
+#define PNP_ID_LEN 8
 
 struct pnp_resource;
 struct pnp_protocol;
@@ -148,7 +149,7 @@
 }
 
 struct pnp_fixup {
- char id[7];
+ char id[PNP_ID_LEN];
         void (*quirk_function)(struct pnp_dev *dev); /* fixup function */
 };
 
@@ -180,20 +181,20 @@
  */
 
 struct pnp_id {
- char id[7];
+ char id[PNP_ID_LEN];
         struct pnp_id * next;
 };
 
 struct pnp_device_id {
- char id[7];
+ char id[PNP_ID_LEN];
         unsigned long driver_data; /* data private to the driver */
 };
 
 struct pnp_card_device_id {
- char id[7];
+ char id[PNP_ID_LEN];
         unsigned long driver_data; /* data private to the driver */
         struct {
- char id[7];
+ char id[PNP_ID_LEN];
         } devs[MAX_DEVICES]; /* logical devices */
 };
 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Fri Jan 31 2003 - 22:00:14 EST