]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
ns83820: Add copper device settings
authorDenis Kirjanov <dkirjanov@hera.kernel.org>
Fri, 3 Sep 2010 10:05:40 +0000 (10:05 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 7 Sep 2010 01:15:37 +0000 (18:15 -0700)
Signed-off-by: Denis Kirjanov <dkirjanov@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ns83820.c

index b3cebb1204f1beaa26cb00ab849178f0319b8b39..379af3e4edcc97c75a1fab99eb06d56664787f28 100644 (file)
@@ -1270,13 +1270,21 @@ static int ns83820_get_settings(struct net_device *ndev,
 
        cmd->supported = SUPPORTED_Autoneg;
 
-       /* we have optical interface */
        if (dev->CFG_cache & CFG_TBI_EN) {
+               /* we have optical interface */
                cmd->supported |= SUPPORTED_1000baseT_Half |
                                        SUPPORTED_1000baseT_Full |
                                        SUPPORTED_FIBRE;
                cmd->port       = PORT_FIBRE;
-       } /* TODO: else copper related  support */
+       } else {
+               /* we have copper */
+               cmd->supported |= SUPPORTED_10baseT_Half |
+                       SUPPORTED_10baseT_Full | SUPPORTED_100baseT_Half |
+                       SUPPORTED_100baseT_Full | SUPPORTED_1000baseT_Half |
+                       SUPPORTED_1000baseT_Full |
+                       SUPPORTED_MII;
+               cmd->port = PORT_MII;
+       }
 
        cmd->duplex = fullduplex ? DUPLEX_FULL : DUPLEX_HALF;
        switch (cfg / CFG_SPDSTS0 & 3) {