From: Guenter Roeck <linux@roeck-us.net>
To: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Cc: jdelvare@suse.com, linux-hwmon@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] hwmon: (pmbus) convert sysfs sprintf/snprintf family to sysfs_emit
Date: Wed, 3 Feb 2021 12:44:05 -0800 [thread overview]
Message-ID: <20210203204405.GG106766@roeck-us.net> (raw)
In-Reply-To: <1612255743-52579-1-git-send-email-jiapeng.chong@linux.alibaba.com>
On Tue, Feb 02, 2021 at 04:49:03PM +0800, Jiapeng Chong wrote:
> Fix the following coccicheck warning:
>
> ./drivers/hwmon/pmbus/inspur-ipsps.c:73:8-16: WARNING: use scnprintf or
> sprintf.
>
> ./drivers/hwmon/pmbus/inspur-ipsps.c:114:9-17: WARNING: use scnprintf or
> sprintf.
>
> ./drivers/hwmon/pmbus/inspur-ipsps.c:94:8-16: WARNING: use scnprintf or
> sprintf.
>
> Reported-by: Abaci Robot<abaci@linux.alibaba.com>
> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Please refrain from such changes. I'll accept them only if other changes
are made to the driver at the same time.
Guenter
> ---
> Changes in v2:
> -Modified code space.
>
> drivers/hwmon/pmbus/inspur-ipsps.c | 28 ++++++++++++++--------------
> 1 file changed, 14 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/hwmon/pmbus/inspur-ipsps.c b/drivers/hwmon/pmbus/inspur-ipsps.c
> index 88c5865..bf593fd 100644
> --- a/drivers/hwmon/pmbus/inspur-ipsps.c
> +++ b/drivers/hwmon/pmbus/inspur-ipsps.c
> @@ -70,7 +70,7 @@ static ssize_t ipsps_string_show(struct device *dev,
> p = memscan(data, '#', rc);
> *p = '\0';
>
> - return snprintf(buf, PAGE_SIZE, "%s\n", data);
> + return sysfs_emit(buf, "%s\n", data);
> }
>
> static ssize_t ipsps_fw_version_show(struct device *dev,
> @@ -91,9 +91,9 @@ static ssize_t ipsps_fw_version_show(struct device *dev,
> if (rc != 6)
> return -EPROTO;
>
> - return snprintf(buf, PAGE_SIZE, "%u.%02u%u-%u.%02u\n",
> - data[1], data[2]/* < 100 */, data[3]/*< 10*/,
> - data[4], data[5]/* < 100 */);
> + return sysfs_emit(buf, "%u.%02u%u-%u.%02u\n",
> + data[1], data[2]/* < 100 */, data[3]/*< 10*/,
> + data[4], data[5]/* < 100 */);
> }
>
> static ssize_t ipsps_mode_show(struct device *dev,
> @@ -111,19 +111,19 @@ static ssize_t ipsps_mode_show(struct device *dev,
>
> switch (rc) {
> case MODE_ACTIVE:
> - return snprintf(buf, PAGE_SIZE, "[%s] %s %s\n",
> - MODE_ACTIVE_STRING,
> - MODE_STANDBY_STRING, MODE_REDUNDANCY_STRING);
> + return sysfs_emit(buf, "[%s] %s %s\n",
> + MODE_ACTIVE_STRING,
> + MODE_STANDBY_STRING, MODE_REDUNDANCY_STRING);
> case MODE_STANDBY:
> - return snprintf(buf, PAGE_SIZE, "%s [%s] %s\n",
> - MODE_ACTIVE_STRING,
> - MODE_STANDBY_STRING, MODE_REDUNDANCY_STRING);
> + return sysfs_emit(buf, "%s [%s] %s\n",
> + MODE_ACTIVE_STRING,
> + MODE_STANDBY_STRING, MODE_REDUNDANCY_STRING);
> case MODE_REDUNDANCY:
> - return snprintf(buf, PAGE_SIZE, "%s %s [%s]\n",
> - MODE_ACTIVE_STRING,
> - MODE_STANDBY_STRING, MODE_REDUNDANCY_STRING);
> + return sysfs_emit(buf, "%s %s [%s]\n",
> + MODE_ACTIVE_STRING,
> + MODE_STANDBY_STRING, MODE_REDUNDANCY_STRING);
> default:
> - return snprintf(buf, PAGE_SIZE, "unspecified\n");
> + return sysfs_emit(buf, "unspecified\n");
> }
> }
>
> --
> 1.8.3.1
>
prev parent reply other threads:[~2021-02-03 20:49 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-02 8:49 Jiapeng Chong
2021-02-03 20:44 ` Guenter Roeck [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=20210203204405.GG106766@roeck-us.net \
--to=linux@roeck-us.net \
--cc=jdelvare@suse.com \
--cc=jiapeng.chong@linux.alibaba.com \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®