Skip to content

Commit

Permalink
drivers/net/pcmcia/3c589_cs: fix port configuration switcheroo
Browse files Browse the repository at this point in the history
10base2 and 10baseT were accidentally switched.

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

Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Jeff Garzik committed Sep 15, 2007
1 parent 5ad887f commit fadacb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/pcmcia/3c589_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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" };

/*====================================================================*/

Expand Down

0 comments on commit fadacb1

Please sign in to comment.