Skip to content

Commit

Permalink
PCI: aerdrv_acpi.c: remove unneeded NULL check
Browse files Browse the repository at this point in the history
There's no reason for checking pdev->bus for being NULL here (and we'd
anyway Oops 3 lines below if it was).

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Adrian Bunk authored and Greg Kroah-Hartman committed Apr 21, 2008
1 parent bc04327 commit d75b305
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/pci/pcie/aer/aerdrv_acpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ int aer_osc_setup(struct pcie_device *pciedev)
return -1;

/* Find root host bridge */
while (pdev->bus && pdev->bus->self)
while (pdev->bus->self)
pdev = pdev->bus->self;
handle = acpi_get_pci_rootbridge_handle(
pci_domain_nr(pdev->bus), pdev->bus->number);
Expand Down

0 comments on commit d75b305

Please sign in to comment.