Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1765399AbYCFLCF (ORCPT ); Thu, 6 Mar 2008 06:02:05 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1763086AbYCFK4i (ORCPT ); Thu, 6 Mar 2008 05:56:38 -0500 Received: from mail.southpole.se ([193.12.106.18]:44129 "EHLO mail.southpole.se" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1763677AbYCFKzx (ORCPT ); Thu, 6 Mar 2008 05:55:53 -0500 From: Jonas Bonn To: jonas@southpole.se, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, jgarzik@pobox.com Subject: [PATCH] net: use DECLARE_PCI_DEVICE_TABLE Date: Thu, 6 Mar 2008 11:55:46 +0100 Message-Id: <1204800947-21569-9-git-send-email-jonas@southpole.se> X-Mailer: git-send-email 1.5.4.3 In-Reply-To: <1204800947-21569-8-git-send-email-jonas@southpole.se> References: <> <1204800947-21569-1-git-send-email-jonas@southpole.se> <1204800947-21569-2-git-send-email-jonas@southpole.se> <1204800947-21569-3-git-send-email-jonas@southpole.se> <1204800947-21569-4-git-send-email-jonas@southpole.se> <1204800947-21569-5-git-send-email-jonas@southpole.se> <1204800947-21569-6-git-send-email-jonas@southpole.se> <1204800947-21569-7-git-send-email-jonas@southpole.se> <1204800947-21569-8-git-send-email-jonas@southpole.se> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1015 Lines: 29 Makes struct pci_device_id array const and adds section attribute __devinitconst Signed-off-by: Jonas Bonn --- drivers/net/e1000/e1000_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c index 0991648..542e0fa 100644 --- a/drivers/net/e1000/e1000_main.c +++ b/drivers/net/e1000/e1000_main.c @@ -53,7 +53,7 @@ static const char e1000_copyright[] = "Copyright (c) 1999-2006 Intel Corporation #define PCIE(x) x, #endif -static struct pci_device_id e1000_pci_tbl[] = { +static DECLARE_PCI_DEVICE_TABLE(e1000_pci_tbl) = { INTEL_E1000_ETHERNET_DEVICE(0x1000), INTEL_E1000_ETHERNET_DEVICE(0x1001), INTEL_E1000_ETHERNET_DEVICE(0x1004), -- 1.5.4.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/