forked from Minki/linux
PNP: Replace acpi_bus_get_device()
Replace acpi_bus_get_device() that is going to be dropped with acpi_fetch_acpi_dev(). No intentional functional impact. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
26291c54e1
commit
ed945296bb
@ -287,9 +287,9 @@ static acpi_status __init pnpacpi_add_device_handler(acpi_handle handle,
|
||||
u32 lvl, void *context,
|
||||
void **rv)
|
||||
{
|
||||
struct acpi_device *device;
|
||||
struct acpi_device *device = acpi_fetch_acpi_dev(handle);
|
||||
|
||||
if (acpi_bus_get_device(handle, &device))
|
||||
if (!device)
|
||||
return AE_CTRL_DEPTH;
|
||||
if (acpi_is_pnp_device(device))
|
||||
pnpacpi_add_device(device);
|
||||
|
Loading…
Reference in New Issue
Block a user