lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Wed, 11 Jan 2017 16:18:50 +1100
From:   Joel Stanley <joel@....id.au>
To:     Guenter Roeck <linux@...ck-us.net>
Cc:     Wim Van Sebroeck <wim@...ana.be>, linux-watchdog@...r.kernel.org,
        linux-kernel@...r.kernel.org
Subject: Re: [PATCH 02/62] watchdog: aspeed_wdt: Convert to use device managed functions

On Wed, Jan 11, 2017 at 10:34 AM, Guenter Roeck <linux@...ck-us.net> wrote:
> Use device managed functions to simplify error handling, reduce
> source code size, improve readability, and reduce the likelyhood of bugs.
>
> The conversion was done automatically with coccinelle using the
> following semantic patches. The semantic patches and the scripts used
> to generate this commit log are available at
> https://github.com/groeck/coccinelle-patches
>
> - Drop assignments to otherwise unused variables
> - Drop remove function
> - Drop platform_set_drvdata()
> - Use devm_watchdog_register_driver() to register watchdog device
>
> Cc: Joel Stanley <joel@....id.au>
> Signed-off-by: Guenter Roeck <linux@...ck-us.net>

Acked-by: Joel Stanley <joel@....id.au>

Cheers,

Joel

> ---
>  drivers/watchdog/aspeed_wdt.c | 14 +-------------
>  1 file changed, 1 insertion(+), 13 deletions(-)
>
> diff --git a/drivers/watchdog/aspeed_wdt.c b/drivers/watchdog/aspeed_wdt.c
> index f5ad8023c2e6..1c652582de40 100644
> --- a/drivers/watchdog/aspeed_wdt.c
> +++ b/drivers/watchdog/aspeed_wdt.c
> @@ -136,15 +136,6 @@ static const struct watchdog_info aspeed_wdt_info = {
>         .identity       = KBUILD_MODNAME,
>  };
>
> -static int aspeed_wdt_remove(struct platform_device *pdev)
> -{
> -       struct aspeed_wdt *wdt = platform_get_drvdata(pdev);
> -
> -       watchdog_unregister_device(&wdt->wdd);
> -
> -       return 0;
> -}
> -
>  static int aspeed_wdt_probe(struct platform_device *pdev)
>  {
>         struct aspeed_wdt *wdt;
> @@ -187,20 +178,17 @@ static int aspeed_wdt_probe(struct platform_device *pdev)
>                 set_bit(WDOG_HW_RUNNING, &wdt->wdd.status);
>         }
>
> -       ret = watchdog_register_device(&wdt->wdd);
> +       ret = devm_watchdog_register_device(&pdev->dev, &wdt->wdd);
>         if (ret) {
>                 dev_err(&pdev->dev, "failed to register\n");
>                 return ret;
>         }
>
> -       platform_set_drvdata(pdev, wdt);
> -
>         return 0;
>  }
>
>  static struct platform_driver aspeed_watchdog_driver = {
>         .probe = aspeed_wdt_probe,
> -       .remove = aspeed_wdt_remove,
>         .driver = {
>                 .name = KBUILD_MODNAME,
>                 .of_match_table = of_match_ptr(aspeed_wdt_of_table),
> --
> 2.7.4
>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ