summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfigurator.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r--perl-install/Xconfigurator.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm
index 6e849c3e6..022409ab5 100644
--- a/perl-install/Xconfigurator.pm
+++ b/perl-install/Xconfigurator.pm
@@ -158,6 +158,7 @@ sub keepOnlyLegalModes {
sub cardConfigurationAuto() {
my @cards;
if (my @c = grep { $_->{driver} =~ /(Card|Server):/ } detect_devices::probeall()) {
+ @c >= 2 && $c[0]{description} eq $c[1]{description} && $c[0]{description} =~ /82830 CGC/ and shift @c;
foreach my $i (0..$#c) {
local $_ = $c[$i]->{driver};
my $card = { identifier => ($c[$i]{description} . (@c > 1 && " $i")) };