* [PATCH] ARM: fix swizzle build failure in integrator platform
@ 2012-05-03 21:59 Paul Gortmaker
0 siblings, 0 replies; only message in thread
From: Paul Gortmaker @ 2012-05-03 21:59 UTC (permalink / raw)
To: linux-arm-kernel
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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-05-03 21:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-03 21:59 [PATCH] ARM: fix swizzle build failure in integrator platform Paul Gortmaker
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).