diff options
Diffstat (limited to 'arch')
-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) | |||
581 | if ((r->flags & IORESOURCE_UNSET) && r->end && | 581 | if ((r->flags & IORESOURCE_UNSET) && r->end && |
582 | (!ppc_md.pcibios_enable_device_hook || | 582 | (!ppc_md.pcibios_enable_device_hook || |
583 | !ppc_md.pcibios_enable_device_hook(dev, 1))) { | 583 | !ppc_md.pcibios_enable_device_hook(dev, 1))) { |
584 | int rc; | ||
585 | |||
584 | r->flags &= ~IORESOURCE_UNSET; | 586 | r->flags &= ~IORESOURCE_UNSET; |
585 | pci_assign_resource(dev, idx); | 587 | rc = pci_assign_resource(dev, idx); |
588 | BUG_ON(rc); | ||
586 | } | 589 | } |
587 | } | 590 | } |
588 | 591 | ||