pinctrl: lynxpoint: Drop no-op ACPI_PTR() call

Since we dependent on ACPI, there is no need to use ACPI_PTR()
which is a no-op in this case.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
This commit is contained in:
Andy Shevchenko 2020-06-12 17:50:05 +03:00
parent 0472567ba8
commit e359a6f03b

View file

@ -959,7 +959,7 @@ static struct platform_driver lp_gpio_driver = {
.driver = { .driver = {
.name = "lp_gpio", .name = "lp_gpio",
.pm = &lp_gpio_pm_ops, .pm = &lp_gpio_pm_ops,
.acpi_match_table = ACPI_PTR(lynxpoint_gpio_acpi_match), .acpi_match_table = lynxpoint_gpio_acpi_match,
}, },
}; };