[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <59004.1349475644@turing-police.cc.vt.edu>
Date: Fri, 05 Oct 2012 18:20:44 -0400
From: Valdis.Kletnieks@...edu
To: Paul Bolle <pebolle@...cali.nl>
Cc: Mark Brown <broonie@...nsource.wolfsonmicro.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] regmap: silence GCC warning
On Wed, 03 Oct 2012 09:23:36 +0200, Paul Bolle said:
> By the way, GCC doesn't warn if I add an early check whether 'val_count'
> is non-zero:
>
> diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c
> index c241ae2..d41527b 100644
> --- a/drivers/base/regmap/regmap.c
> +++ b/drivers/base/regmap/regmap.c
> @@ -1171,6 +1171,8 @@ int regmap_raw_read(struct regmap *map, unsigned int reg, void *val,
> unsigned int v;
> int ret, i;
>
> + if (!val_count)
> + return -EINVAL;
> That is another way to silence GCC here.
That's probably a preferable approach - that way, if a bogus val_count gets
passed in, the caller will be informed of the fact. Which is a lot better than
just papering over the warning.
Content of type "application/pgp-signature" skipped
Powered by blists - more mailing lists