Expand length of pnpinfo and length fields since pccard pnpinfo can

easily be longer than 64 characters.
This commit is contained in:
Warner Losh 2003-02-17 18:56:00 +00:00
parent 00e416592e
commit 085aa77164
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=111045

View File

@ -45,8 +45,8 @@ struct devinfo_i_dev {
char dd_name[DEVINFO_STRLEN];
char dd_desc[DEVINFO_STRLEN];
char dd_drivername[DEVINFO_STRLEN];
char dd_pnpinfo[DEVINFO_STRLEN * 2];
char dd_location[DEVINFO_STRLEN * 2];
char dd_pnpinfo[DEVINFO_STRLEN * 4];
char dd_location[DEVINFO_STRLEN * 4];
uint32_t dd_devflags;
uint16_t dd_flags;
device_state_t dd_state;