]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
tg3: Fix a flags typo
authorMatt Carlson <mcarlson@broadcom.com>
Mon, 9 Jun 2008 22:40:26 +0000 (15:40 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 9 Jun 2008 22:40:26 +0000 (15:40 -0700)
This patch fixes a problem where the TG3_FLAG_10_100_ONLY flag was
testing against the wrong flags variable.

Signed-off-by: Matt Carlson <mcarlson@broadcom.com>
Signed-off-by: Michael Chan <mchan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/tg3.c

index 4c248d79ee445d776b5b49512d87b41c7cad5b17..c1293182943935ab9ba963a8a6edb99c9ac52d67 100644 (file)
@@ -8598,7 +8598,7 @@ static int tg3_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
                   (cmd->speed == SPEED_1000))
                return -EINVAL;
        else if ((cmd->speed == SPEED_1000) &&
-                (tp->tg3_flags2 & TG3_FLAG_10_100_ONLY))
+                (tp->tg3_flags & TG3_FLAG_10_100_ONLY))
                return -EINVAL;
 
        tg3_full_lock(tp, 0);