Message ID | 20230609121649.88147-1-minhuadotchen@gmail.com |
---|---|
State | Accepted |
Commit | 8507f35447e6e51c15a7172ecc81c4219017d476 |
Headers | show |
Series | gpio: davinci: make davinci_gpio_dev_pm_ops static | expand |
On Fri, Jun 9, 2023 at 2:16 PM Min-Hua Chen <minhuadotchen@gmail.com> wrote: > > This patch fixes the following sprse warnings: > > drivers/gpio/gpio-davinci.c:695:1: sparse: warning: symbol 'davinci_gpio_dev_pm_ops' was not declared. Should it be static? > > No functional change intended. > > Signed-off-by: Min-Hua Chen <minhuadotchen@gmail.com> > --- > drivers/gpio/gpio-davinci.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpio/gpio-davinci.c b/drivers/gpio/gpio-davinci.c > index aaaf61dc2632..1aed3ace0240 100644 > --- a/drivers/gpio/gpio-davinci.c > +++ b/drivers/gpio/gpio-davinci.c > @@ -692,7 +692,7 @@ static int davinci_gpio_resume(struct device *dev) > return 0; > } > > -DEFINE_SIMPLE_DEV_PM_OPS(davinci_gpio_dev_pm_ops, davinci_gpio_suspend, > +static DEFINE_SIMPLE_DEV_PM_OPS(davinci_gpio_dev_pm_ops, davinci_gpio_suspend, > davinci_gpio_resume); > > static const struct of_device_id davinci_gpio_ids[] = { > -- > 2.34.1 > Applied, thanks! Bart
diff --git a/drivers/gpio/gpio-davinci.c b/drivers/gpio/gpio-davinci.c index aaaf61dc2632..1aed3ace0240 100644 --- a/drivers/gpio/gpio-davinci.c +++ b/drivers/gpio/gpio-davinci.c @@ -692,7 +692,7 @@ static int davinci_gpio_resume(struct device *dev) return 0; } -DEFINE_SIMPLE_DEV_PM_OPS(davinci_gpio_dev_pm_ops, davinci_gpio_suspend, +static DEFINE_SIMPLE_DEV_PM_OPS(davinci_gpio_dev_pm_ops, davinci_gpio_suspend, davinci_gpio_resume); static const struct of_device_id davinci_gpio_ids[] = {
This patch fixes the following sprse warnings: drivers/gpio/gpio-davinci.c:695:1: sparse: warning: symbol 'davinci_gpio_dev_pm_ops' was not declared. Should it be static? No functional change intended. Signed-off-by: Min-Hua Chen <minhuadotchen@gmail.com> --- drivers/gpio/gpio-davinci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)