* [PATCH] pnp id size fix (1/6)
@ 2003-01-25 20:15 Adam Belay
0 siblings, 0 replies; only message in thread
From: Adam Belay @ 2003-01-25 20:15 UTC (permalink / raw)
To: greg; +Cc: linux-kernel
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 */
};
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-01-26 1:02 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-01-25 20:15 [PATCH] pnp id size fix (1/6) Adam Belay
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox