From patchwork Mon Nov 19 18:25:34 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bill Pemberton X-Patchwork-Id: 200091 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 9C6962C0093 for ; Tue, 20 Nov 2012 05:36:27 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754446Ab2KSSgX (ORCPT ); Mon, 19 Nov 2012 13:36:23 -0500 Received: from viridian.itc.Virginia.EDU ([128.143.12.139]:41487 "EHLO viridian.itc.virginia.edu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754227Ab2KSSet (ORCPT ); Mon, 19 Nov 2012 13:34:49 -0500 Received: by viridian.itc.virginia.edu (Postfix, from userid 1249) id 7975B803E3; Mon, 19 Nov 2012 13:27:45 -0500 (EST) From: Bill Pemberton To: gregkh@linuxfoundation.org Cc: linux-pci@vger.kernel.org Subject: [PATCH 385/493] pci: remove use of __devinitconst Date: Mon, 19 Nov 2012 13:25:34 -0500 Message-Id: <1353349642-3677-385-git-send-email-wfp5p@virginia.edu> X-Mailer: git-send-email 1.8.0 In-Reply-To: <1353349642-3677-1-git-send-email-wfp5p@virginia.edu> References: <1353349642-3677-1-git-send-email-wfp5p@virginia.edu> Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org CONFIG_HOTPLUG is going away as an option so __devinitconst is no longer needed. Signed-off-by: Bill Pemberton Cc: linux-pci@vger.kernel.org --- include/linux/pci.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/pci.h b/include/linux/pci.h index 34862da..ea9533b 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -589,7 +589,7 @@ struct pci_driver { * in a generic manner. */ #define DEFINE_PCI_DEVICE_TABLE(_table) \ - const struct pci_device_id _table[] __devinitconst + const struct pci_device_id _table[] /** * PCI_DEVICE - macro used to describe a specific pci device