diff options
author | Segher Boessenkool <segher@kernel.crashing.org> | 2007-08-02 01:41:13 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-08-03 19:36:01 +1000 |
commit | 3a77d291be53fbc619f14a6199b9b4cac036c476 (patch) | |
tree | fbbdfaf0de61440bbf0707084537ddf5f62e3c4b | |
parent | b9c3fdb0f0fe02ba33e87ef947f23cd12e6196fe (diff) |
[POWERPC] Fix a compile warning in pci_32.c
__must_check, so do so.
Signed-off-by: Segher Boessenkool <segher@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/powerpc/kernel/pci_32.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/pci_32.c b/arch/powerpc/kernel/pci_32.c index cd35c969bb28..04a3109ae3c6 100644 --- a/arch/powerpc/kernel/pci_32.c +++ b/arch/powerpc/kernel/pci_32.c @@ -581,8 +581,11 @@ pcibios_assign_resources(void) if ((r->flags & IORESOURCE_UNSET) && r->end && (!ppc_md.pcibios_enable_device_hook || !ppc_md.pcibios_enable_device_hook(dev, 1))) { + int rc; + r->flags &= ~IORESOURCE_UNSET; - pci_assign_resource(dev, idx); + rc = pci_assign_resource(dev, idx); + BUG_ON(rc); } } |