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] [day] [month] [year] [list]
Date:	Sat, 16 Feb 2013 10:53:25 +0800
From:	Haojian Zhuang <haojian.zhuang@...il.com>
To:	Axel Lin <axel.lin@...ics.com>
Cc:	Mark Brown <broonie@...nsource.wolfsonmicro.com>,
	Liam Girdwood <lgirdwood@...il.com>,
	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] regulator: max8925: Remove unused parameter from max8925_regulator_dt_init

On Fri, Feb 15, 2013 at 8:36 PM, Axel Lin <axel.lin@...ics.com> wrote:
> The info parameter is not used at all, remove it.
>
> Signed-off-by: Axel Lin <axel.lin@...ics.com>
> ---
>  drivers/regulator/max8925-regulator.c |    5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/regulator/max8925-regulator.c b/drivers/regulator/max8925-regulator.c
> index 0d5f64a..3597da8 100644
> --- a/drivers/regulator/max8925-regulator.c
> +++ b/drivers/regulator/max8925-regulator.c
> @@ -246,7 +246,6 @@ static struct max8925_regulator_info max8925_regulator_info[] = {
>
>  #ifdef CONFIG_OF
>  static int max8925_regulator_dt_init(struct platform_device *pdev,
> -                                   struct max8925_regulator_info *info,
>                                     struct regulator_config *config,
>                                     int ridx)
>  {
> @@ -272,7 +271,7 @@ static int max8925_regulator_dt_init(struct platform_device *pdev,
>         return 0;
>  }
>  #else
> -#define max8925_regulator_dt_init(w, x, y, z)  (-1)
> +#define max8925_regulator_dt_init(x, y, z)     (-1)
>  #endif
>
>  static int max8925_regulator_probe(struct platform_device *pdev)
> @@ -309,7 +308,7 @@ static int max8925_regulator_probe(struct platform_device *pdev)
>         config.dev = &pdev->dev;
>         config.driver_data = ri;
>
> -       if (max8925_regulator_dt_init(pdev, ri, &config, regulator_idx))
> +       if (max8925_regulator_dt_init(pdev, &config, regulator_idx))
>                 if (pdata)
>                         config.init_data = pdata;
>
> --
> 1.7.9.5
>
>
>

Acked-by: Haojian Zhuang <haojian.zhuang@...il.com>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists