diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2008-11-02 21:18:24 +0000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-11-05 19:59:08 +1100 |
commit | 454666eb78d890f5740ea1901f8b01a43c77c67c (patch) | |
tree | 858f0070d60743e9b6c09a6afe36dcec829953ed /arch/powerpc/platforms | |
parent | 9c8b4aff18b59cd0c2d9a77b3df1f9d7077df90c (diff) | |
download | op-kernel-dev-454666eb78d890f5740ea1901f8b01a43c77c67c.zip op-kernel-dev-454666eb78d890f5740ea1901f8b01a43c77c67c.tar.gz |
powerpc: Fix "unused variable" warning in pci_dlpar.c
This gets rid of this build warning:
arch/powerpc/platforms/pseries/pci_dlpar.c: In function 'init_phb_dynamic':
arch/powerpc/platforms/pseries/pci_dlpar.c:192: warning: unused variable 'b'
This is one of the very few warnings left in a ppc64_defconfig build and
getting rid of it will make it easier to see future introduced ones (in
fact this was introduced very recently).
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms')
-rw-r--r-- | arch/powerpc/platforms/pseries/pci_dlpar.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/pseries/pci_dlpar.c b/arch/powerpc/platforms/pseries/pci_dlpar.c index 31481dc..7190493 100644 --- a/arch/powerpc/platforms/pseries/pci_dlpar.c +++ b/arch/powerpc/platforms/pseries/pci_dlpar.c @@ -189,7 +189,6 @@ struct pci_controller * __devinit init_phb_dynamic(struct device_node *dn) { struct pci_controller *phb; int primary; - struct pci_bus *b; primary = list_empty(&hose_list); phb = pcibios_alloc_controller(dn); |