diff options
author | Masanari Iida <standby24x7@gmail.com> | 2016-04-19 11:27:33 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2016-04-28 04:52:28 -0400 |
commit | c01e01597cbd0cf0571c2b05bf9e2245afb4478d (patch) | |
tree | 42c4de0f06da68e34e674cc1caf346205e806a7f /drivers/platform | |
parent | 35fc7b7dacc1f9bd6bdb5190cd6d355b7c5414d2 (diff) |
treewide: Fix typos in printk
This patch fix spelling typos in printk from various part
of the codes.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/mips/cpu_hwmon.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/platform/mips/cpu_hwmon.c b/drivers/platform/mips/cpu_hwmon.c index 0f6c63e17049..4993e19f1531 100644 --- a/drivers/platform/mips/cpu_hwmon.c +++ b/drivers/platform/mips/cpu_hwmon.c | |||
@@ -80,13 +80,13 @@ static const struct attribute *hwmon_cputemp2[] = { | |||
80 | static ssize_t cpu0_temp_label(struct device *dev, | 80 | static ssize_t cpu0_temp_label(struct device *dev, |
81 | struct device_attribute *attr, char *buf) | 81 | struct device_attribute *attr, char *buf) |
82 | { | 82 | { |
83 | return sprintf(buf, "CPU 0 Temprature\n"); | 83 | return sprintf(buf, "CPU 0 Temperature\n"); |
84 | } | 84 | } |
85 | 85 | ||
86 | static ssize_t cpu1_temp_label(struct device *dev, | 86 | static ssize_t cpu1_temp_label(struct device *dev, |
87 | struct device_attribute *attr, char *buf) | 87 | struct device_attribute *attr, char *buf) |
88 | { | 88 | { |
89 | return sprintf(buf, "CPU 1 Temprature\n"); | 89 | return sprintf(buf, "CPU 1 Temperature\n"); |
90 | } | 90 | } |
91 | 91 | ||
92 | static ssize_t get_cpu0_temp(struct device *dev, | 92 | static ssize_t get_cpu0_temp(struct device *dev, |
@@ -169,7 +169,7 @@ static int __init loongson_hwmon_init(void) | |||
169 | 169 | ||
170 | ret = create_sysfs_cputemp_files(&cpu_hwmon_dev->kobj); | 170 | ret = create_sysfs_cputemp_files(&cpu_hwmon_dev->kobj); |
171 | if (ret) { | 171 | if (ret) { |
172 | pr_err("fail to create cpu temprature interface!\n"); | 172 | pr_err("fail to create cpu temperature interface!\n"); |
173 | goto fail_create_sysfs_cputemp_files; | 173 | goto fail_create_sysfs_cputemp_files; |
174 | } | 174 | } |
175 | 175 | ||