public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: <ye.xingchen@zte.com.cn>
To: <jic23@kernel.org>
Cc: <ktsai@capellamicro.com>, <andriy.shevchenko@linux.intel.com>,
	<lars@metafoo.de>, <linux-iio@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>
Subject: [PATCH] iio: light: cm3232: Convert to use sysfs_emit_at() API
Date: Wed, 7 Dec 2022 15:42:47 +0800 (CST)	[thread overview]
Message-ID: <202212071542472012621@zte.com.cn> (raw)

From: ye xingchen <ye.xingchen@zte.com.cn>

Follow the advice of the Documentation/filesystems/sysfs.rst and show()
should only use sysfs_emit() or sysfs_emit_at() when formatting the
value to be returned to user space.

Signed-off-by: ye xingchen <ye.xingchen@zte.com.cn>
---
 drivers/iio/light/cm3232.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/iio/light/cm3232.c b/drivers/iio/light/cm3232.c
index 43e492f5051d..e5ff14a825bf 100644
--- a/drivers/iio/light/cm3232.c
+++ b/drivers/iio/light/cm3232.c
@@ -291,10 +291,10 @@ static ssize_t cm3232_get_it_available(struct device *dev,
 	int i, len;

 	for (i = 0, len = 0; i < ARRAY_SIZE(cm3232_als_it_scales); i++)
-		len += scnprintf(buf + len, PAGE_SIZE - len, "%u.%06u ",
-			cm3232_als_it_scales[i].val,
-			cm3232_als_it_scales[i].val2);
-	return len + scnprintf(buf + len, PAGE_SIZE - len, "\n");
+		len += sysfs_emit_at(buf, len, "%u.%06u ",
+				     cm3232_als_it_scales[i].val,
+				     cm3232_als_it_scales[i].val2);
+	return len + sysfs_emit_at(buf, len, "\n");
 }

 static const struct iio_chan_spec cm3232_channels[] = {
-- 
2.25.1

                 reply	other threads:[~2022-12-07  7:43 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=202212071542472012621@zte.com.cn \
    --to=ye.xingchen@zte.com.cn \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=jic23@kernel.org \
    --cc=ktsai@capellamicro.com \
    --cc=lars@metafoo.de \
    --cc=linux-iio@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