Message ID | ZxMftFRJ1b91KbRV@mail.google.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [next] perf/x86/amd: replace snprintf with sysfs_emit helper function | expand |
diff --git a/arch/x86/events/amd/core.c b/arch/x86/events/amd/core.c index b4a1a2576510..bbada8e3e491 100644 --- a/arch/x86/events/amd/core.c +++ b/arch/x86/events/amd/core.c @@ -1346,7 +1346,7 @@ static ssize_t branches_show(struct device *cdev, struct device_attribute *attr, char *buf) { - return snprintf(buf, PAGE_SIZE, "%d\n", x86_pmu.lbr_nr); + return sysfs_emit(buf, "%d\n", x86_pmu.lbr_nr); } static DEVICE_ATTR_RO(branches);
sysfs_emit() helper function should be used when formatting the value to be returned to user space as per the documentation. No need to replicate logic in sysfs .show() callbacks. This patch replaces open-coded sysfs_emit() logic sysfs .show() callbacks. Signed-off-by: Paulo Miguel Almeida <paulo.miguel.almeida.rodenas@gmail.com> --- arch/x86/events/amd/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)