From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from acsinet15.oracle.com ([141.146.126.227]:25414 "EHLO acsinet15.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161893Ab2CSFtf (ORCPT ); Mon, 19 Mar 2012 01:49:35 -0400 From: Yinghai Lu To: Jesse Barnes , x86 Cc: Bjorn Helgaas , Andrew Morton , Linus Torvalds , Greg Kroah-Hartman , linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, Yinghai Lu Subject: [PATCH -v2 04/26] PCI: Update pci_resource_start to use pci_dev_resource_n() Date: Sun, 18 Mar 2012 22:48:27 -0700 Message-Id: <1332136129-14010-5-git-send-email-yinghai@kernel.org> In-Reply-To: <1332136129-14010-1-git-send-email-yinghai@kernel.org> References: <1332136129-14010-1-git-send-email-yinghai@kernel.org> Sender: linux-pci-owner@vger.kernel.org List-ID: instead of use resource[bar], to prepare for addon resource usages. Signed-off-by: Yinghai Lu --- include/linux/pci.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/linux/pci.h b/include/linux/pci.h index e3f9ae1..c7a2806 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -1400,9 +1400,9 @@ static inline int pci_domain_nr(struct pci_bus *bus) /* these helpers provide future and backwards compatibility * for accessing popular PCI BAR info */ -#define pci_resource_start(dev, bar) ((dev)->resource[(bar)].start) -#define pci_resource_end(dev, bar) ((dev)->resource[(bar)].end) -#define pci_resource_flags(dev, bar) ((dev)->resource[(bar)].flags) +#define pci_resource_start(dev, bar) (pci_dev_resource_n(dev, (bar))->start) +#define pci_resource_end(dev, bar) (pci_dev_resource_n(dev, (bar))->end) +#define pci_resource_flags(dev, bar) (pci_dev_resource_n(dev, (bar))->flags) #define pci_resource_len(dev,bar) \ ((pci_resource_start((dev), (bar)) == 0 && \ pci_resource_end((dev), (bar)) == \ -- 1.7.7