platform/x86: intel-uncore-freq: Use sysfs_emit() to instead of scnprintf()
authorye xingchen <ye.xingchen@zte.com.cn>
Fri, 23 Sep 2022 06:33:14 +0000 (06:33 +0000)
committerHans de Goede <hdegoede@redhat.com>
Tue, 27 Sep 2022 13:06:32 +0000 (15:06 +0200)
Replace the open-code with sysfs_emit() to simplify the code.

Signed-off-by: ye xingchen <ye.xingchen@zte.com.cn>
Link: https://lore.kernel.org/r/20220923063314.239146-1-ye.xingchen@zte.com.cn
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/platform/x86/intel/uncore-frequency/uncore-frequency-common.c

index 84eabd6..cb24de9 100644 (file)
@@ -113,7 +113,7 @@ show_uncore_perf_status(current_freq_khz);
                struct uncore_data *data = container_of(attr, struct uncore_data,\
                                                          member_name##_dev_attr);\
                                                                        \
-               return scnprintf(buf, PAGE_SIZE, "%u\n",                \
+               return sysfs_emit(buf, "%u\n",                          \
                                 data->member_name);                    \
        }                                                               \