From mboxrd@z Thu Jan 1 00:00:00 1970 From: Greg KH Subject: [PATCH v3] tg3: add device id of Apple Thunderbolt Ethernet device Date: Thu, 12 Jul 2012 18:39:44 -0700 Message-ID: <20120713013944.GB6445@kroah.com> References: <20120712202131.GA26436@kroah.com> <20120712205607.GA27999@kroah.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: netdev@vger.kernel.org To: Matt Carlson , Michael Chan Return-path: Received: from mail-pb0-f46.google.com ([209.85.160.46]:33862 "EHLO mail-pb0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932250Ab2GMBjs (ORCPT ); Thu, 12 Jul 2012 21:39:48 -0400 Received: by pbbrp8 with SMTP id rp8so4625120pbb.19 for ; Thu, 12 Jul 2012 18:39:48 -0700 (PDT) Content-Disposition: inline In-Reply-To: <20120712205607.GA27999@kroah.com> Sender: netdev-owner@vger.kernel.org List-ID: The Apple Thunderbolt ethernet device is already listed in the driver, but not hooked up in the MODULE_DEVICE_TABLE(). This fixes that and allows it to work properly. Signed-off-by: Greg Kroah-Hartman --- Resent to Cc: the proper developers this time. diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c index e47ff8b..3721833 100644 --- a/drivers/net/ethernet/broadcom/tg3.c +++ b/drivers/net/ethernet/broadcom/tg3.c @@ -298,6 +298,7 @@ static DEFINE_PCI_DEVICE_TABLE(tg3_pci_tbl) = { {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57795)}, {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5719)}, {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_5720)}, + {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, TG3PCI_DEVICE_TIGON3_57762)}, {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9DXX)}, {PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, PCI_DEVICE_ID_SYSKONNECT_9MXX)}, {PCI_DEVICE(PCI_VENDOR_ID_ALTIMA, PCI_DEVICE_ID_ALTIMA_AC1000)},