[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20140626141959.GB19645@lee--X1>
Date: Thu, 26 Jun 2014 15:19:59 +0100
From: Lee Jones <lee.jones@...aro.org>
To: Rickard Strandqvist <rickard_strandqvist@...ctrumdigital.se>
Cc: Linus Walleij <linus.walleij@...aro.org>,
Samuel Ortiz <sameo@...ux.intel.com>,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] mfd: ab8500-debugfs.c: Cleaning up values that are
never used
On Thu, 26 Jun 2014, Rickard Strandqvist wrote:
> Remove variable that are never used
>
> This was found using a static code analysis program called cppcheck.
>
> Signed-off-by: Rickard Strandqvist <rickard_strandqvist@...ctrumdigital.se>
> ---
> drivers/mfd/ab8500-debugfs.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
Applied, thanks.
> diff --git a/drivers/mfd/ab8500-debugfs.c b/drivers/mfd/ab8500-debugfs.c
> index d1a22aa..d514e36 100644
> --- a/drivers/mfd/ab8500-debugfs.c
> +++ b/drivers/mfd/ab8500-debugfs.c
> @@ -1350,12 +1350,11 @@ static int ab8500_print_all_banks(struct seq_file *s, void *p)
> {
> struct device *dev = s->private;
> unsigned int i;
> - int err;
>
> seq_printf(s, AB8500_NAME_STRING " register values:\n");
>
> for (i = 0; i < AB8500_NUM_BANKS; i++) {
> - err = seq_printf(s, " bank 0x%02X:\n", i);
> + seq_printf(s, " bank 0x%02X:\n", i);
>
> ab8500_registers_print(dev, i, s);
> }
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
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