aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/hid/i2c-hid/i2c-hid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/i2c-hid/i2c-hid.c b/drivers/hid/i2c-hid/i2c-hid.c
index e6f413a2b1e9..97689e98e53f 100644
--- a/drivers/hid/i2c-hid/i2c-hid.c
+++ b/drivers/hid/i2c-hid/i2c-hid.c
@@ -892,10 +892,10 @@ static int i2c_hid_acpi_pdata(struct i2c_client *client,
892 892
893static void i2c_hid_acpi_fix_up_power(struct device *dev) 893static void i2c_hid_acpi_fix_up_power(struct device *dev)
894{ 894{
895 acpi_handle handle = ACPI_HANDLE(dev);
896 struct acpi_device *adev; 895 struct acpi_device *adev;
897 896
898 if (handle && acpi_bus_get_device(handle, &adev) == 0) 897 adev = ACPI_COMPANION(dev);
898 if (adev)
899 acpi_device_fix_up_power(adev); 899 acpi_device_fix_up_power(adev);
900} 900}
901 901