aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/hwmon/asus_atk0110.c2
-rw-r--r--include/linux/fs.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/asus_atk0110.c b/drivers/hwmon/asus_atk0110.c
index ae208f612198..cccef87963e0 100644
--- a/drivers/hwmon/asus_atk0110.c
+++ b/drivers/hwmon/asus_atk0110.c
@@ -688,7 +688,7 @@ static int atk_debugfs_gitm_get(void *p, u64 *val)
688DEFINE_SIMPLE_ATTRIBUTE(atk_debugfs_gitm, 688DEFINE_SIMPLE_ATTRIBUTE(atk_debugfs_gitm,
689 atk_debugfs_gitm_get, 689 atk_debugfs_gitm_get,
690 NULL, 690 NULL,
691 "0x%08llx\n") 691 "0x%08llx\n");
692 692
693static int atk_acpi_print(char *buf, size_t sz, union acpi_object *obj) 693static int atk_acpi_print(char *buf, size_t sz, union acpi_object *obj)
694{ 694{
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 2daccaf4b547..1ab6c6913040 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -2688,7 +2688,7 @@ static const struct file_operations __fops = { \
2688 .read = simple_attr_read, \ 2688 .read = simple_attr_read, \
2689 .write = simple_attr_write, \ 2689 .write = simple_attr_write, \
2690 .llseek = generic_file_llseek, \ 2690 .llseek = generic_file_llseek, \
2691}; 2691}
2692 2692
2693static inline __printf(1, 2) 2693static inline __printf(1, 2)
2694void __simple_attr_check_format(const char *fmt, ...) 2694void __simple_attr_check_format(const char *fmt, ...)