From: Jonathan Cameron <jic23@jic23.retrosnub.co.uk>
To: linux-iio@vger.kernel.org
Cc: Jonathan Cameron <Jonathan.Cameron@huawei.com>,
kernel test robot <lkp@intel.com>,
Lars-Peter Clausen <lars@metafoo.de>
Subject: Re: [PATCH] iio: fix warnings about passing signed values to %u
Date: Sun, 21 Feb 2021 16:26:22 +0000 [thread overview]
Message-ID: <20210221162622.02f6ca2c@archlinux> (raw)
In-Reply-To: <20201128155648.376646-1-jic23@kernel.org>
On Sat, 28 Nov 2020 15:56:48 +0000
Jonathan Cameron <jic23@kernel.org> wrote:
> From: Jonathan Cameron <Jonathan.Cameron@huawei.com>
>
> In reality, we already know both of these values are positive
> but it is still better to make that explicit at the point of use
> with abs().
>
> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> Reported-by: kernel test robot <lkp@intel.com>
Maintainers curse. If someone could sanity check this that would be great.
I never trust myself not to do anything stupid :)
Jonathan
> ---
> drivers/iio/industrialio-core.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/iio/industrialio-core.c b/drivers/iio/industrialio-core.c
> index c2e4c267c36b..00644666f7fe 100644
> --- a/drivers/iio/industrialio-core.c
> +++ b/drivers/iio/industrialio-core.c
> @@ -608,14 +608,14 @@ static ssize_t __iio_format_value(char *buf, size_t len, unsigned int type,
> return scnprintf(buf, len, "-%d.%06u%s", abs(vals[0]),
> -vals[1], scale_db ? " dB" : "");
> else
> - return scnprintf(buf, len, "%d.%06u%s", vals[0], vals[1],
> + return scnprintf(buf, len, "%d.%06u%s", vals[0], abs(vals[1]),
> scale_db ? " dB" : "");
> case IIO_VAL_INT_PLUS_NANO:
> if (vals[1] < 0)
> return scnprintf(buf, len, "-%d.%09u", abs(vals[0]),
> -vals[1]);
> else
> - return scnprintf(buf, len, "%d.%09u", vals[0], vals[1]);
> + return scnprintf(buf, len, "%d.%09u", vals[0], abs(vals[1]));
> case IIO_VAL_FRACTIONAL:
> tmp2 = div_s64((s64)vals[0] * 1000000000LL, vals[1]);
> tmp1 = vals[1];
prev parent reply other threads:[~2021-02-21 16:27 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-28 15:56 [PATCH] iio: fix warnings about passing signed values to %u Jonathan Cameron
2021-02-21 16:26 ` Jonathan Cameron [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210221162622.02f6ca2c@archlinux \
--to=jic23@jic23.retrosnub.co.uk \
--cc=Jonathan.Cameron@huawei.com \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=lkp@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.