br: remove redundant check and init

Since these checks and initialization are done in
dev_ethtool_get_settings called later on, remove this redundancy.

Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Acked-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jiri Pirko 2011-09-01 03:29:38 +00:00 committed by David S. Miller
parent e8aaebc6b2
commit fa3df928e0

View file

@ -33,8 +33,7 @@
*/ */
static int port_cost(struct net_device *dev) static int port_cost(struct net_device *dev)
{ {
if (dev->ethtool_ops && dev->ethtool_ops->get_settings) { struct ethtool_cmd ecmd;
struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET, };
if (!dev_ethtool_get_settings(dev, &ecmd)) { if (!dev_ethtool_get_settings(dev, &ecmd)) {
switch (ethtool_cmd_speed(&ecmd)) { switch (ethtool_cmd_speed(&ecmd)) {
@ -48,7 +47,6 @@ static int port_cost(struct net_device *dev)
return 100; return 100;
} }
} }
}
/* Old silly heuristics based on name */ /* Old silly heuristics based on name */
if (!strncmp(dev->name, "lec", 3)) if (!strncmp(dev->name, "lec", 3))