aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tg3.c
diff options
context:
space:
mode:
authorMatt Carlson <mcarlson@broadcom.com>2010-01-20 11:58:09 -0500
committerDavid S. Miller <davem@davemloft.net>2010-01-20 22:21:01 -0500
commitcb4ed1fd8af963101a59c8c5fef97cbbf5f3fb88 (patch)
treebd72995e1a78fd7365dabb721e6b657f45df280e /drivers/net/tg3.c
parentc2353a3214ff5813c4b719b3cdacbe939b1c63a0 (diff)
tg3: Turn off the debug UART for 57765
If the debug UART is left enabled, the LEDs will not work properly. This patch disables the debug UART. Signed-off-by: Matt Carlson <mcarlson@broadcom.com> Reviewed-by: Michael Chan <mchan@broadcom.com> Reviewed-by: Benjamin Li <benli@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tg3.c')
-rw-r--r--drivers/net/tg3.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c
index dffa51a4aafb..075d21a6b55a 100644
--- a/drivers/net/tg3.c
+++ b/drivers/net/tg3.c
@@ -13328,7 +13328,8 @@ static int __devinit tg3_get_invariants(struct tg3 *tp)
13328 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3; 13328 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_OE3;
13329 13329
13330 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 || 13330 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5755 ||
13331 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780) 13331 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 ||
13332 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
13332 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL; 13333 tp->grc_local_ctrl |= GRC_LCLCTRL_GPIO_UART_SEL;
13333 13334
13334 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 || 13335 if (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5761 ||