Commit 59e9910e authored by Salah Triki's avatar Salah Triki Committed by Krzysztof Kozlowski
Browse files

memory: bt1-l2-ctl: replace scnprintf() with sysfs_emit()



Documentation/filesystems/sysfs.rst mentions that show() should only
use sysfs_emit() or sysfs_emit_at() when formating the value to be
returned to user space. So replace scnprintf() with sysfs_emit().

Signed-off-by: default avatarSalah Triki <salah.triki@gmail.com>
Link: https://lore.kernel.org/r/aBkw_p9GkH2fm2UJ@pc


Signed-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
parent bd4f5f6c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -222,7 +222,7 @@ static ssize_t l2_ctl_latency_show(struct device *dev,
	if (ret)
		return ret;

	return scnprintf(buf, PAGE_SIZE, "%u\n", data);
	return sysfs_emit(buf, "%u\n", data);
}

static ssize_t l2_ctl_latency_store(struct device *dev,