summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/network/ethernet.pm7
1 files changed, 1 insertions, 6 deletions
diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm
index 1dbc2e9d5..113e6fb6a 100644
--- a/perl-install/network/ethernet.pm
+++ b/perl-install/network/ethernet.pm
@@ -81,12 +81,7 @@ sub get_eth_cards {
sub get_eth_cards_names {
my (@all_cards) = @_;
- {
- map {
- $_->[2] ||= "Firewire (IEE1394) Network Adapter" if $_->[1] eq 'ip1394';
- $_->[0] => join(': ', $_->[0], $_->[2]);
- } @all_cards;
- };
+ { map { $_->[0] => join(': ', $_->[0], $_->[2]) } @all_cards };
}
#- returns (link_type, mac_address)