diff options
-rwxr-xr-x | mdk-stage1/usb-resource/update-usb-ids.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/usb-resource/update-usb-ids.pl b/mdk-stage1/usb-resource/update-usb-ids.pl index 03ddb1355..9dcd421f5 100755 --- a/mdk-stage1/usb-resource/update-usb-ids.pl +++ b/mdk-stage1/usb-resource/update-usb-ids.pl @@ -33,7 +33,7 @@ require '/usr/bin/merge2pcitable.pl'; my $drivers = read_pcitable("/usr/share/ldetect-lst/pcitable"); while (my ($k, $v) = each %$drivers) { - $v->[0] =~ /^usb-/ or next; + $v->[0] =~ /^usb-|^ehci-hcd/ or next; $k =~ /^(....)(....)/; printf qq|\t{ 0x%s, 0x%s, "", "%s" },\n|, $1, $2, $v->[0]; |