diff options
author | Andreas Herrmann <andreas.herrmann3@amd.com> | 2008-12-16 13:08:53 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-16 13:58:01 -0500 |
commit | 2a3282a77b02fb47576ffbdb4867c8c6eeb83ed5 (patch) | |
tree | 62d8078dacee6e559930d60b282bfc04060bdacd /arch/x86/kernel/microcode_amd.c | |
parent | 3c763fd77e66e55d029052da31df0abd9920cb1e (diff) |
x86: microcode_amd: fix typos and trailing whitespaces in log messages
Impact: fix printk typos
Signed-off-by: Andreas Herrmann <andreas.herrmann3@amd.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/microcode_amd.c')
-rw-r--r-- | arch/x86/kernel/microcode_amd.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/x86/kernel/microcode_amd.c b/arch/x86/kernel/microcode_amd.c index b5bc81470bcf..83a9fa321d9b 100644 --- a/arch/x86/kernel/microcode_amd.c +++ b/arch/x86/kernel/microcode_amd.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * This driver allows to upgrade microcode on AMD | 10 | * This driver allows to upgrade microcode on AMD |
11 | * family 0x10 and 0x11 processors. | 11 | * family 0x10 and 0x11 processors. |
12 | * | 12 | * |
13 | * Licensed unter the terms of the GNU General Public | 13 | * Licensed under the terms of the GNU General Public |
14 | * License version 2. See file COPYING for details. | 14 | * License version 2. See file COPYING for details. |
15 | */ | 15 | */ |
16 | 16 | ||
@@ -133,7 +133,7 @@ static int get_matching_microcode(int cpu, void *mc, int rev) | |||
133 | 133 | ||
134 | if (!equiv_cpu_id) { | 134 | if (!equiv_cpu_id) { |
135 | printk(KERN_ERR "microcode: CPU%d cpu_id " | 135 | printk(KERN_ERR "microcode: CPU%d cpu_id " |
136 | "not found in equivalent cpu table \n", cpu); | 136 | "not found in equivalent cpu table\n", cpu); |
137 | return 0; | 137 | return 0; |
138 | } | 138 | } |
139 | 139 | ||
@@ -151,7 +151,7 @@ static int get_matching_microcode(int cpu, void *mc, int rev) | |||
151 | NULL); | 151 | NULL); |
152 | if ((!nb_pci_dev) || | 152 | if ((!nb_pci_dev) || |
153 | (mc_header->nb_rev_id != nb_pci_dev->revision)) { | 153 | (mc_header->nb_rev_id != nb_pci_dev->revision)) { |
154 | printk(KERN_ERR "microcode: CPU%d NB mismatch \n", cpu); | 154 | printk(KERN_ERR "microcode: CPU%d NB mismatch\n", cpu); |
155 | pci_dev_put(nb_pci_dev); | 155 | pci_dev_put(nb_pci_dev); |
156 | return 0; | 156 | return 0; |
157 | } | 157 | } |
@@ -165,7 +165,7 @@ static int get_matching_microcode(int cpu, void *mc, int rev) | |||
165 | NULL); | 165 | NULL); |
166 | if ((!sb_pci_dev) || | 166 | if ((!sb_pci_dev) || |
167 | (mc_header->sb_rev_id != sb_pci_dev->revision)) { | 167 | (mc_header->sb_rev_id != sb_pci_dev->revision)) { |
168 | printk(KERN_ERR "microcode: CPU%d SB mismatch \n", cpu); | 168 | printk(KERN_ERR "microcode: CPU%d SB mismatch\n", cpu); |
169 | pci_dev_put(sb_pci_dev); | 169 | pci_dev_put(sb_pci_dev); |
170 | return 0; | 170 | return 0; |
171 | } | 171 | } |
@@ -219,7 +219,7 @@ static void apply_microcode_amd(int cpu) | |||
219 | } | 219 | } |
220 | 220 | ||
221 | printk(KERN_INFO "microcode: CPU%d updated from revision " | 221 | printk(KERN_INFO "microcode: CPU%d updated from revision " |
222 | "0x%x to 0x%x \n", | 222 | "0x%x to 0x%x\n", |
223 | cpu_num, uci->cpu_sig.rev, mc_amd->hdr.patch_id); | 223 | cpu_num, uci->cpu_sig.rev, mc_amd->hdr.patch_id); |
224 | 224 | ||
225 | uci->cpu_sig.rev = rev; | 225 | uci->cpu_sig.rev = rev; |
@@ -282,7 +282,7 @@ static int install_equiv_cpu_table(u8 *buf, | |||
282 | 282 | ||
283 | if (buf_pos[1] != UCODE_EQUIV_CPU_TABLE_TYPE || !size) { | 283 | if (buf_pos[1] != UCODE_EQUIV_CPU_TABLE_TYPE || !size) { |
284 | printk(KERN_ERR "microcode: error! " | 284 | printk(KERN_ERR "microcode: error! " |
285 | "Wrong microcode equivalnet cpu table\n"); | 285 | "Wrong microcode equivalent cpu table\n"); |
286 | return 0; | 286 | return 0; |
287 | } | 287 | } |
288 | 288 | ||