mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 16:41:25 +00:00
PCI: aerdrv_acpi.c: remove unneeded NULL check
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>
This commit is contained in:
parent
bc04327456
commit
d75b305295
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ int aer_osc_setup(struct pcie_device *pciedev)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
/* Find root host bridge */
|
/* Find root host bridge */
|
||||||
while (pdev->bus && pdev->bus->self)
|
while (pdev->bus->self)
|
||||||
pdev = pdev->bus->self;
|
pdev = pdev->bus->self;
|
||||||
handle = acpi_get_pci_rootbridge_handle(
|
handle = acpi_get_pci_rootbridge_handle(
|
||||||
pci_domain_nr(pdev->bus), pdev->bus->number);
|
pci_domain_nr(pdev->bus), pdev->bus->number);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue