hwmon: (nsa320-hwmon) Remove redundant of_match_ptr()
authorRuan Jinjie <ruanjinjie@huawei.com>
Thu, 10 Aug 2023 06:26:35 +0000 (14:26 +0800)
committerGuenter Roeck <linux@roeck-us.net>
Mon, 21 Aug 2023 13:04:31 +0000 (06:04 -0700)
The driver depends on CONFIG_OF, it is not necessary to use
of_match_ptr() here.

Signed-off-by: Ruan Jinjie <ruanjinjie@huawei.com>
Link: https://lore.kernel.org/r/20230810062635.1947552-1-ruanjinjie@huawei.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/nsa320-hwmon.c

index e263344..18076ba 100644 (file)
@@ -191,7 +191,7 @@ static struct platform_driver nsa320_hwmon_driver = {
        .probe = nsa320_hwmon_probe,
        .driver = {
                .name = "nsa320-hwmon",
-               .of_match_table = of_match_ptr(of_nsa320_hwmon_match),
+               .of_match_table = of_nsa320_hwmon_match,
        },
 };