]> git.karo-electronics.de Git - linux-beck.git/commitdiff
drivers/net/pcmcia/3c589_cs: fix port configuration switcheroo
authorJeff Garzik <jeff@garzik.org>
Sat, 15 Sep 2007 23:41:43 +0000 (19:41 -0400)
committerJeff Garzik <jeff@garzik.org>
Sat, 15 Sep 2007 23:41:43 +0000 (19:41 -0400)
10base2 and 10baseT were accidentally switched.

Noticed by Andreas HÃŒbner, forwarded by Alan Cox.

Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/net/pcmcia/3c589_cs.c

index 503f2685fb73c434ae4a2d6d98be4f03a3d4b7d9..c06cae3f0b564c3240058f4a97c3656d47e9bf27 100644 (file)
@@ -116,7 +116,7 @@ struct el3_private {
     spinlock_t         lock;
 };
 
-static const char *if_names[] = { "auto", "10baseT", "10base2", "AUI" };
+static const char *if_names[] = { "auto", "10base2", "10baseT", "AUI" };
 
 /*====================================================================*/