diff options
| author | Linus Torvalds <torvalds@penguin.transmeta.com> | 2003-01-12 19:21:31 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@penguin.transmeta.com> | 2003-01-12 19:21:31 -0800 |
| commit | 7a362921f419abfacd4301ea89916ae144b7bfee (patch) | |
| tree | de68102b31ea22bda9b5d506d1f74dc450f7295d /include/linux | |
| parent | 29b498838d9fda88b960caa7d93f09eaf6fd4cd8 (diff) | |
| parent | dd62ebc4ac5aa23eafc2fab5f3d63cb2727ba73d (diff) | |
Merge
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/pnp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/pnp.h b/include/linux/pnp.h index b97e8f64122f..d138647ff235 100644 --- a/include/linux/pnp.h +++ b/include/linux/pnp.h @@ -189,7 +189,7 @@ struct pnp_device_id { unsigned long driver_data; /* data private to the driver */ }; -struct pnp_card_id { +struct pnp_card_device_id { char id[7]; unsigned long driver_data; /* data private to the driver */ struct { @@ -216,9 +216,9 @@ struct pnp_driver { struct pnpc_driver { struct list_head node; char *name; - const struct pnp_card_id *id_table; + const struct pnp_card_device_id *id_table; unsigned int flags; - int (*probe) (struct pnp_card *card, const struct pnp_card_id *card_id); + int (*probe) (struct pnp_card *card, const struct pnp_card_device_id *card_id); void (*remove) (struct pnp_card *card); struct device_driver driver; }; |
