From: paul.gortmaker@windriver.com (Paul Gortmaker)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: fix swizzle build failure in integrator platform
Date: Thu, 3 May 2012 17:59:24 -0400 [thread overview]
Message-ID: <1336082364-27611-1-git-send-email-paul.gortmaker@windriver.com> (raw)
Commit 466b8cb9ef7d64efb7aeadc802239e7af754b053 (linux-next)
"ARM: PCI: get rid of pci_std_swizzle()"
deleted this line:
#define pci_std_swizzle pci_common_swizzle
but the integrator was still using the std variant,
causing the build failure:
arch/arm/mach-integrator/pci.c:76:2: error: implicit declaration of function 'pci_std_swizzle'
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
diff --git a/arch/arm/mach-integrator/pci.c b/arch/arm/mach-integrator/pci.c
index 40f4b4f..6c1667e 100644
--- a/arch/arm/mach-integrator/pci.c
+++ b/arch/arm/mach-integrator/pci.c
@@ -73,7 +73,7 @@ static u8 __init integrator_swizzle(struct pci_dev *dev, u8 *pinp)
if (*pinp == 0)
*pinp = 1;
- return pci_std_swizzle(dev, pinp);
+ return pci_common_swizzle(dev, pinp);
}
static int irq_tab[4] __initdata = {
--
1.7.9.1
reply other threads:[~2012-05-03 21:59 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1336082364-27611-1-git-send-email-paul.gortmaker@windriver.com \
--to=paul.gortmaker@windriver.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).