HID: i2c-hid: acpi: Drop redundant ACPI_PTR()
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Fri, 26 Feb 2021 19:32:25 +0000 (21:32 +0200)
committerJiri Kosina <jkosina@suse.cz>
Mon, 8 Mar 2021 09:43:34 +0000 (10:43 +0100)
The driver depends on ACPI, ACPI_PTR() resolution is always the same.
Otherwise a compiler may produce a warning.

That said, the rule of thumb either ugly ifdeffery with ACPI_PTR or
none should be used in a driver.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/i2c-hid/i2c-hid-acpi.c

index a4810f1..a6f0257 100644 (file)
@@ -126,7 +126,7 @@ static struct i2c_driver i2c_hid_acpi_driver = {
                .name   = "i2c_hid_acpi",
                .pm     = &i2c_hid_core_pm,
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
-               .acpi_match_table = ACPI_PTR(i2c_hid_acpi_match),
+               .acpi_match_table = i2c_hid_acpi_match,
        },
 
        .probe_new      = i2c_hid_acpi_probe,