summaryrefslogtreecommitdiffstats
path: root/sys/pccard/slot.h
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2002-07-22 06:46:10 +0000
committerimp <imp@FreeBSD.org>2002-07-22 06:46:10 +0000
commit2442eb4eddf7def948501cf76d5fa2eab08df870 (patch)
tree6c8157b3de31e1f4ac84cf47d28edb2982fdc1be /sys/pccard/slot.h
parente73489bbe4deeedc62a5f34ecf84e42439a6dd86 (diff)
downloadFreeBSD-src-2442eb4eddf7def948501cf76d5fa2eab08df870.zip
FreeBSD-src-2442eb4eddf7def948501cf76d5fa2eab08df870.tar.gz
Copy manufacturer and version string into the kernel, and copy it to
the slot info. This brings OLDCARD's API much closer to NEWCARD and will allow moving more information into the kernel from pccard.conf for common drivers (ed).
Diffstat (limited to 'sys/pccard/slot.h')
-rw-r--r--sys/pccard/slot.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/pccard/slot.h b/sys/pccard/slot.h
index 9f40ae4..f797451 100644
--- a/sys/pccard/slot.h
+++ b/sys/pccard/slot.h
@@ -88,7 +88,9 @@ struct slot_ctrl {
struct pccard_devinfo {
uint8_t name[128];
int running; /* Current state of driver */
- uint8_t misc[116]; /* For any random info */
+ uint8_t misc[DEV_MISC_LEN]; /* For any random info */
+ uint8_t manufstr[DEV_MAX_CIS_LEN];
+ uint8_t versstr[DEV_MAX_CIS_LEN];
uint32_t manufacturer; /* Manufacturer ID */
uint32_t product; /* Product ID */
uint32_t prodext; /* Product ID (extended) */
OpenPOWER on IntegriCloud