]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
watchdog: da9063: Do not use a global variable
authorFabio Estevam <festevam@denx.de>
Fri, 18 Oct 2024 13:58:20 +0000 (10:58 -0300)
committerWim Van Sebroeck <wim@linux-watchdog.org>
Tue, 5 Nov 2024 09:04:40 +0000 (10:04 +0100)
Using the 'use_sw_pm' variable as global is not recommended
as it prevents multi instances of the driver to run.

Make it a member of the da9063 structure instead.

Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20241018135821.274376-1-festevam@gmail.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
drivers/watchdog/da9063_wdt.c
include/linux/mfd/da9063/core.h

index 684667469b10c0bc1db3b31a236b0444082145f4..69f884cf1a7bcfa3335c3b2b867626f43e8d87a6 100644 (file)
@@ -27,7 +27,6 @@
  *   others: timeout = 2048 ms * 2^(TWDSCALE-1).
  */
 static const unsigned int wdt_timeout[] = { 0, 2, 4, 8, 16, 32, 65, 131 };
-static bool use_sw_pm;
 
 #define DA9063_TWDSCALE_DISABLE                0
 #define DA9063_TWDSCALE_MIN            1
@@ -230,7 +229,7 @@ static int da9063_wdt_probe(struct platform_device *pdev)
        if (!wdd)
                return -ENOMEM;
 
-       use_sw_pm = device_property_present(dev, "dlg,use-sw-pm");
+       da9063->use_sw_pm = device_property_present(dev, "dlg,use-sw-pm");
 
        wdd->info = &da9063_watchdog_info;
        wdd->ops = &da9063_watchdog_ops;
@@ -267,8 +266,9 @@ static int da9063_wdt_probe(struct platform_device *pdev)
 static int __maybe_unused da9063_wdt_suspend(struct device *dev)
 {
        struct watchdog_device *wdd = dev_get_drvdata(dev);
+       struct da9063 *da9063 = watchdog_get_drvdata(wdd);
 
-       if (!use_sw_pm)
+       if (!da9063->use_sw_pm)
                return 0;
 
        if (watchdog_active(wdd))
@@ -280,8 +280,9 @@ static int __maybe_unused da9063_wdt_suspend(struct device *dev)
 static int __maybe_unused da9063_wdt_resume(struct device *dev)
 {
        struct watchdog_device *wdd = dev_get_drvdata(dev);
+       struct da9063 *da9063 = watchdog_get_drvdata(wdd);
 
-       if (!use_sw_pm)
+       if (!da9063->use_sw_pm)
                return 0;
 
        if (watchdog_active(wdd))
index 8db52324f416957804fbc22af4c61ca8a8889dba..eae82f421414ec63da5c1a9cf5a04a0f496f48fd 100644 (file)
@@ -78,6 +78,7 @@ struct da9063 {
        enum da9063_type type;
        unsigned char   variant_code;
        unsigned int    flags;
+       bool use_sw_pm;
 
        /* Control interface */
        struct regmap   *regmap;