mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 15:50:53 +07:00
ACPI / scan: Remove unnecessary initialization of local variables
The local variables in acpi_bus_get_power_flags() need not be initialized upfront, so change the code accordingly. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
f33ce56836
commit
8bc5053bcd
@ -1087,9 +1087,9 @@ static void acpi_bus_init_power_state(struct acpi_device *device, int state)
|
|||||||
|
|
||||||
static void acpi_bus_get_power_flags(struct acpi_device *device)
|
static void acpi_bus_get_power_flags(struct acpi_device *device)
|
||||||
{
|
{
|
||||||
acpi_status status = 0;
|
acpi_status status;
|
||||||
acpi_handle handle = NULL;
|
acpi_handle handle;
|
||||||
u32 i = 0;
|
u32 i;
|
||||||
|
|
||||||
/* Presence of _PS0|_PR0 indicates 'power manageable' */
|
/* Presence of _PS0|_PR0 indicates 'power manageable' */
|
||||||
status = acpi_get_handle(device->handle, "_PS0", &handle);
|
status = acpi_get_handle(device->handle, "_PS0", &handle);
|
||||||
|
Loading…
Reference in New Issue
Block a user