diff options
author | Michael Neuling <mikey@neuling.org> | 2013-04-14 15:42:01 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-04-30 01:15:12 -0400 |
commit | d5bbe6596a318a960489d39dab49122df68918b1 (patch) | |
tree | 081fb684c903cc647c125e0888acba0f0d21f1c3 /arch/powerpc/sysdev | |
parent | bc23100a0d646aedb6e17fbcecdc35a24cd3bf2a (diff) |
powerpc: Fix usage of setup_pci_atmu()
Linux next is currently failing to compile mpc85xx_defconfig with:
arch/powerpc/sysdev/fsl_pci.c:944:2: error: too many arguments to function 'setup_pci_atmu'
This is caused by (from Kumar's next branch):
commit 34642bbb3d12121333efcf4ea7dfe66685e403a1
Author: Kumar Gala <galak@kernel.crashing.org>
powerpc/fsl-pci: Keep PCI SoC controller registers in pci_controller
Which changed definition of setup_pci_atmu() but didn't update one of
the callers. Below fixes this.
Signed-off-by: Michael Neuling <mikey@neuling.org>
Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/sysdev')
-rw-r--r-- | arch/powerpc/sysdev/fsl_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/fsl_pci.c b/arch/powerpc/sysdev/fsl_pci.c index cf81d6516514..cffe7edac858 100644 --- a/arch/powerpc/sysdev/fsl_pci.c +++ b/arch/powerpc/sysdev/fsl_pci.c | |||
@@ -975,7 +975,7 @@ static int fsl_pci_resume(struct device *dev) | |||
975 | return -ENODEV; | 975 | return -ENODEV; |
976 | } | 976 | } |
977 | 977 | ||
978 | setup_pci_atmu(hose, &pci_rsrc); | 978 | setup_pci_atmu(hose); |
979 | 979 | ||
980 | return 0; | 980 | return 0; |
981 | } | 981 | } |