summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r--perl-install/detect_devices.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index 249f0df6a..b1e9fc907 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -425,6 +425,7 @@ sub getInputDevices() {
$device = {};
$device->{vendor} = /Vendor=(\w+)/ && $1;
$device->{id} = /Product=(\w+)/ && $1;
+ $device->{bustype} = /Bus=(\w+)/ && $1;
} elsif (/N: Name="(.*)"/) {
my $descr = $1;
$device->{description} = "|$descr";