diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-09-06 18:16:47 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-09-06 18:16:47 +0000 |
commit | d2019f092a447e1a91b1d4a810ff2696117a16b4 (patch) | |
tree | 94cb1c99af4dbc4033432c0c91b5900a367c61b2 /mdk-stage1 | |
parent | 73fcd46f4d2e496a81bcd1d25dac4980bd6b5345 (diff) | |
download | drakx-d2019f092a447e1a91b1d4a810ff2696117a16b4.tar drakx-d2019f092a447e1a91b1d4a810ff2696117a16b4.tar.gz drakx-d2019f092a447e1a91b1d4a810ff2696117a16b4.tar.bz2 drakx-d2019f092a447e1a91b1d4a810ff2696117a16b4.tar.xz drakx-d2019f092a447e1a91b1d4a810ff2696117a16b4.zip |
fix lame bug preventing usb and firewire controllers to be recognized
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/probing.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mdk-stage1/probing.c b/mdk-stage1/probing.c index ecc45e9b9..31f7db0b1 100644 --- a/mdk-stage1/probing.c +++ b/mdk-stage1/probing.c @@ -364,7 +364,8 @@ void probe_that_type(enum driver_type type, enum media_bus bus __attribute__ ((u while (1) { unsigned int i; - unsigned short vendor, device, subvendor, subdevice, class_, class_prog, devbusfn; + unsigned short vendor, device, subvendor, subdevice, class_, devbusfn; + unsigned char class_prog; const char *name, *module; enum driver_type type_ = type; |