gpio: blzp1600: remove incorrect pf_match_ptr()
authorArnd Bergmann <arnd@arndb.de>
Fri, 2 May 2025 20:37:07 +0000 (22:37 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 5 May 2025 13:02:58 +0000 (15:02 +0200)
The blzp1600_gpio_of_match is defined unconditionally and can always be referenced
by the driver, so don't use of_match_ptr() and avoid this warning:

drivers/gpio/gpio-blzp1600.c:263:34: error: 'blzp1600_gpio_of_match' defined but not used [-Werror=unused-const-variable=]
  263 | static const struct of_device_id blzp1600_gpio_of_match[] = {

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Link: https://lore.kernel.org/r/20250502203721.2117186-1-arnd@kernel.org
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
drivers/gpio/gpio-blzp1600.c

index 2760a13c08012f45793bd34b895b4eb58b613cfa..055cb296ae54758cdc206d36aa1df7b8377d32ec 100644 (file)
@@ -269,7 +269,7 @@ MODULE_DEVICE_TABLE(of, blzp1600_gpio_of_match);
 static struct platform_driver blzp1600_gpio_driver = {
        .driver         = {
                .name   = DRIVER_NAME,
-               .of_match_table = of_match_ptr(blzp1600_gpio_of_match),
+               .of_match_table = blzp1600_gpio_of_match,
        },
        .probe          = blzp1600_gpio_probe,
 };