summaryrefslogtreecommitdiffstats
path: root/perl-install/harddrake/data.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-12-10 22:09:12 +0000
committerThierry Vignaud <tv@mandriva.org>2008-12-10 22:09:12 +0000
commitbc33e426593860bc0ea0ef38a7f157135a8541e0 (patch)
tree984979e3b24a9ca0582b7de54e7ea743add7250b /perl-install/harddrake/data.pm
parentc8c8fb8b23661f07f9fcd18439d960297f1efbc3 (diff)
downloaddrakx-bc33e426593860bc0ea0ef38a7f157135a8541e0.tar
drakx-bc33e426593860bc0ea0ef38a7f157135a8541e0.tar.gz
drakx-bc33e426593860bc0ea0ef38a7f157135a8541e0.tar.bz2
drakx-bc33e426593860bc0ea0ef38a7f157135a8541e0.tar.xz
drakx-bc33e426593860bc0ea0ef38a7f157135a8541e0.zip
perl_checker cleanups
Diffstat (limited to 'perl-install/harddrake/data.pm')
-rw-r--r--perl-install/harddrake/data.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm
index c914c0d5c..d02028eac 100644
--- a/perl-install/harddrake/data.pm
+++ b/perl-install/harddrake/data.pm
@@ -451,7 +451,7 @@ our @tree =
string => N("Printer"),
icon => "hw_printer.png",
configurator => "$sbindir/printerdrake",
- detector => sub { },
+ detector => sub {},
# we do not check these b/c this need user interaction (auth, ...):
checked_on_boot => 0,
},
@@ -487,8 +487,8 @@ our @tree =
detector => sub {
f(grep { $_->{description} =~ /Keyboard/i || $_->{media_type} =~ /Subclass\|Keyboard/i ||
# USB devices are filtered out since we already catch them through probeall():
- $_->{bus} ne 'usb' && $_->{driver} eq 'kbd' && $_->{description} !~ /PC Speaker/
- } @devices),
+ $_->{bus} ne 'usb' && $_->{driver} eq 'kbd' && $_->{description} !~ /PC Speaker/;
+ } @devices);
},
checked_on_boot => 0,
},
@@ -510,8 +510,8 @@ our @tree =
detector => sub {
f(grep { $_->{driver} =~ /^Mouse:|^Tablet:/ || $_->{media_type} =~ /class\|Mouse/ ||
# USB devices are filtered out since we already catch them through probeall():
- $_->{bus} ne 'usb' && $_->{Handlers}{mouse}
- } @devices),
+ $_->{bus} ne 'usb' && $_->{Handlers}{mouse};
+ } @devices);
},
checked_on_boot => 1,
automatic => 1,