Message ID | 20230427074400.55380-1-xingyu.wu@starfivetech.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | [v1] watchdog: starfive: Fix the warning of starfive_wdt_match | expand |
On 4/27/23 00:44, Xingyu Wu wrote: > Drop the function of of_match_ptr() to fix the warning of unused variable > 'starfive_wdt_match'. > > Fixes: db728ea9c7be ("drivers: watchdog: Add StarFive Watchdog driver") > Signed-off-by: Xingyu Wu <xingyu.wu@starfivetech.com> > --- Reviewed-by: Guenter Roeck <linux@roeck-us.net> > > Hi, Guenter and Wim, > > This patch fixes the compiler warning of StarFive watchdog driver and > rebases on the master branch of linux-next. > > Thanks. > > --- > drivers/watchdog/starfive-wdt.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/watchdog/starfive-wdt.c b/drivers/watchdog/starfive-wdt.c > index 1995cceca51e..64d1ad4d267a 100644 > --- a/drivers/watchdog/starfive-wdt.c > +++ b/drivers/watchdog/starfive-wdt.c > @@ -595,7 +595,7 @@ static struct platform_driver starfive_wdt_driver = { > .driver = { > .name = "starfive-wdt", > .pm = &starfive_wdt_pm_ops, > - .of_match_table = of_match_ptr(starfive_wdt_match), > + .of_match_table = starfive_wdt_match, > }, > }; > module_platform_driver(starfive_wdt_driver);
diff --git a/drivers/watchdog/starfive-wdt.c b/drivers/watchdog/starfive-wdt.c index 1995cceca51e..64d1ad4d267a 100644 --- a/drivers/watchdog/starfive-wdt.c +++ b/drivers/watchdog/starfive-wdt.c @@ -595,7 +595,7 @@ static struct platform_driver starfive_wdt_driver = { .driver = { .name = "starfive-wdt", .pm = &starfive_wdt_pm_ops, - .of_match_table = of_match_ptr(starfive_wdt_match), + .of_match_table = starfive_wdt_match, }, }; module_platform_driver(starfive_wdt_driver);
Drop the function of of_match_ptr() to fix the warning of unused variable 'starfive_wdt_match'. Fixes: db728ea9c7be ("drivers: watchdog: Add StarFive Watchdog driver") Signed-off-by: Xingyu Wu <xingyu.wu@starfivetech.com> --- Hi, Guenter and Wim, This patch fixes the compiler warning of StarFive watchdog driver and rebases on the master branch of linux-next. Thanks. --- drivers/watchdog/starfive-wdt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)