From f58f264974b2c327d7b8fa57cc821b43f412ac99 Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Tue, 1 Dec 2009 16:06:55 +0000 Subject: ethtool: Fix switch on port type The new port type cases in commit 6e0512c 'ethtool: Add Direct Attach to the available connector ports' were somehow inserted into the switch on duplex type, not on port type. Move them to the correct place. Signed-off-by: Ben Hutchings Signed-off-by: Jeff Garzik --- ethtool.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ethtool.c') diff --git a/ethtool.c b/ethtool.c index df02e91..10dfc80 100644 --- a/ethtool.c +++ b/ethtool.c @@ -965,12 +965,6 @@ static int dump_ecmd(struct ethtool_cmd *ep) case DUPLEX_FULL: fprintf(stdout, "Full\n"); break; - case PORT_DA: - fprintf(stdout, "Direct Attach Copper\n"); - break; - case PORT_NONE: - fprintf(stdout, "None\n"); - break; default: fprintf(stdout, "Unknown! (%i)\n", ep->duplex); break; @@ -993,6 +987,12 @@ static int dump_ecmd(struct ethtool_cmd *ep) case PORT_FIBRE: fprintf(stdout, "FIBRE\n"); break; + case PORT_DA: + fprintf(stdout, "Direct Attach Copper\n"); + break; + case PORT_NONE: + fprintf(stdout, "None\n"); + break; case PORT_OTHER: fprintf(stdout, "Other\n"); break; -- cgit v1.2.1