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:	Fri, 12 Feb 2016 12:42:51 +0100
From:	Michael Hennerich <michael.hennerich@...log.com>
To:	Axel Lin <axel.lin@...ics.com>, Mark Brown <broonie@...nel.org>
CC:	Liam Girdwood <lgirdwood@...il.com>,
	Sonic Zhang <sonic.zhang@...log.com>,
	<linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] regulator: ad5398: Fix return value of ad5398_write_reg

On 02/11/2016 11:17 AM, Axel Lin wrote:
> i2c_master_send() returns the number of bytes written on success.
> So current code returns 2 if ad5398_write_reg() success.
> This return value is propagated to .set_current_limit, .enable and .disable
> callbacks of regulator_ops. This can be a problem, for example, if the
> users test if the return value of regulator_set_current_limit() is 0.
> Fix it by making ad5398_write_reg() return 0 on success.
>
> Signed-off-by: Axel Lin <axel.lin@...ics.com>

Acked-by: Michael Hennerich <michael.hennerich@...log.com>

> ---
>   drivers/regulator/ad5398.c | 6 ++++--
>   1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/regulator/ad5398.c b/drivers/regulator/ad5398.c
> index ea50a88..8b0f788 100644
> --- a/drivers/regulator/ad5398.c
> +++ b/drivers/regulator/ad5398.c
> @@ -58,10 +58,12 @@ static int ad5398_write_reg(struct i2c_client *client, const unsigned short data
>
>   	val = cpu_to_be16(data);
>   	ret = i2c_master_send(client, (char *)&val, 2);
> -	if (ret < 0)
> +	if (ret != 2) {
>   		dev_err(&client->dev, "I2C write error\n");
> +		return ret < 0 ? ret : -EIO;
> +	}
>
> -	return ret;
> +	return 0;
>   }
>
>   static int ad5398_get_current_limit(struct regulator_dev *rdev)
>


-- 
Greetings,
Michael

--
Analog Devices GmbH      Wilhelm-Wagenfeld-Str. 6      80807 Muenchen
Sitz der Gesellschaft: Muenchen; Registergericht: Muenchen HRB 40368;
Geschaeftsfuehrer:Dr.Carsten Suckrow, Thomas Wessel, William A. Martin,
Margaret Seif

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ