aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid/i2c-hid/i2c-hid.c
diff options
context:
space:
mode:
authorJiri Kosina <jkosina@suse.cz>2018-04-05 13:18:26 +0200
committerJiri Kosina <jkosina@suse.cz>2018-04-05 13:18:26 +0200
commitf73fee743b5c44abc217f957a13fe0721c89450b (patch)
tree820697f5673bda9040b289ae07034c367479124f /drivers/hid/i2c-hid/i2c-hid.c
parentMerge branch 'for-4.17/hid-elan' into for-linus (diff)
parentHID: i2c-hid: Use ACPI_COMPANION() directly (diff)
downloadlinux-dev-f73fee743b5c44abc217f957a13fe0721c89450b.tar.xz
linux-dev-f73fee743b5c44abc217f957a13fe0721c89450b.zip
Merge branch 'for-4.17/hid-i2c' into for-linus
Small hid-i2c acpi cleanup.
Diffstat (limited to 'drivers/hid/i2c-hid/i2c-hid.c')
-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,
static void i2c_hid_acpi_fix_up_power(struct device *dev)
{
- acpi_handle handle = ACPI_HANDLE(dev);
struct acpi_device *adev;
- if (handle && acpi_bus_get_device(handle, &adev) == 0)
+ adev = ACPI_COMPANION(dev);
+ if (adev)
acpi_device_fix_up_power(adev);
}