diff options
author | Jia Hongtao <B38951@freescale.com> | 2012-09-18 17:57:48 +0800 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2012-09-19 08:41:46 -0500 |
commit | 4d56dec5dca496655ef035ef3b80f7c47dc22b77 (patch) | |
tree | 9b05e4d789fa64114101302dba1d42534baa68f4 /arch/powerpc | |
parent | 721c0705906e2ba69907fd2ca837bec6b6a8dbcb (diff) | |
download | linux-3.10-4d56dec5dca496655ef035ef3b80f7c47dc22b77.tar.gz linux-3.10-4d56dec5dca496655ef035ef3b80f7c47dc22b77.tar.bz2 linux-3.10-4d56dec5dca496655ef035ef3b80f7c47dc22b77.zip |
powerpc/fsl-pci: fix warning when CONFIG_SWIOTLB is disabled
Fix the following warning:
arch/powerpc/sysdev/fsl_pci.c: In function 'fsl_pci_probe':
arch/powerpc/sysdev/fsl_pci.c:867:25: error: unused variable 'hose'
Signed-off-by: Jia Hongtao <B38951@freescale.com>
Acked-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/sysdev/fsl_pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/sysdev/fsl_pci.c b/arch/powerpc/sysdev/fsl_pci.c index 2ff35765a6a..3d6f4d8b2e9 100644 --- a/arch/powerpc/sysdev/fsl_pci.c +++ b/arch/powerpc/sysdev/fsl_pci.c @@ -864,7 +864,9 @@ static int __devinit fsl_pci_probe(struct platform_device *pdev) { int ret; struct device_node *node; +#ifdef CONFIG_SWIOTLB struct pci_controller *hose; +#endif node = pdev->dev.of_node; ret = fsl_add_bridge(node, fsl_pci_primary == node); |