diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-03-11 18:49:38 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-03-11 18:49:38 -0800 |
commit | 0ade309be739eceedc4812798da09d698a59867d (patch) | |
tree | 3d16e848a4f7202fbd8999117571706caccef8b7 /drivers/net/tg3.c | |
parent | 8f22757ee84da64d4f662f1dd03dae95358a1efe (diff) |
[TG3] tg3_bus_string(): remove dead code
The Coverity checker spotted this dead code (note that (clock_ctrl == 7)
is already handled above).
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tg3.c')
-rw-r--r-- | drivers/net/tg3.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index 15545620ab0..b8f1524da55 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c @@ -10543,8 +10543,6 @@ static char * __devinit tg3_bus_string(struct tg3 *tp, char *str) strcat(str, "66MHz"); else if (clock_ctrl == 6) strcat(str, "100MHz"); - else if (clock_ctrl == 7) - strcat(str, "133MHz"); } else { strcpy(str, "PCI:"); if (tp->tg3_flags & TG3_FLAG_PCI_HIGH_SPEED) |