Remove multiple KERN_ prefixes from printk formats
Commit 5fd29d6ccb
("printk: clean up
handling of log-levels and newlines") changed printk semantics. printk
lines with multiple KERN_<level> prefixes are no longer emitted as
before the patch.
<level> is now included in the output on each additional use.
Remove all uses of multiple KERN_<level>s in formats.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:

committed by
Linus Torvalds

parent
e3288775ff
commit
ad361c9884
@@ -1739,7 +1739,6 @@ __apicdebuginit(void) print_local_APIC(void *dummy)
|
||||
if (apic_verbosity == APIC_QUIET)
|
||||
return;
|
||||
|
||||
printk(KERN_DEBUG "\n");
|
||||
printk(KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
|
||||
smp_processor_id(), hard_smp_processor_id());
|
||||
v = apic_read(APIC_ID);
|
||||
|
@@ -1259,7 +1259,7 @@ static int __cpuinit powernowk8_cpu_init(struct cpufreq_policy *pol)
|
||||
{
|
||||
static const char ACPI_PSS_BIOS_BUG_MSG[] =
|
||||
KERN_ERR FW_BUG PFX "No compatible ACPI _PSS objects found.\n"
|
||||
KERN_ERR FW_BUG PFX "Try again with latest BIOS.\n";
|
||||
FW_BUG PFX "Try again with latest BIOS.\n";
|
||||
struct powernow_k8_data *data;
|
||||
struct init_on_cpu init_on_cpu;
|
||||
int rc;
|
||||
|
@@ -194,14 +194,14 @@ static void print_mce(struct mce *m)
|
||||
m->cs, m->ip);
|
||||
if (m->cs == __KERNEL_CS)
|
||||
print_symbol("{%s}", m->ip);
|
||||
printk("\n");
|
||||
printk(KERN_CONT "\n");
|
||||
}
|
||||
printk(KERN_EMERG "TSC %llx ", m->tsc);
|
||||
if (m->addr)
|
||||
printk("ADDR %llx ", m->addr);
|
||||
printk(KERN_CONT "ADDR %llx ", m->addr);
|
||||
if (m->misc)
|
||||
printk("MISC %llx ", m->misc);
|
||||
printk("\n");
|
||||
printk(KERN_CONT "MISC %llx ", m->misc);
|
||||
printk(KERN_CONT "\n");
|
||||
printk(KERN_EMERG "PROCESSOR %u:%x TIME %llu SOCKET %u APIC %x\n",
|
||||
m->cpuvendor, m->cpuid, m->time, m->socketid,
|
||||
m->apicid);
|
||||
@@ -209,13 +209,13 @@ static void print_mce(struct mce *m)
|
||||
|
||||
static void print_mce_head(void)
|
||||
{
|
||||
printk(KERN_EMERG "\n" KERN_EMERG "HARDWARE ERROR\n");
|
||||
printk(KERN_EMERG "\nHARDWARE ERROR\n");
|
||||
}
|
||||
|
||||
static void print_mce_tail(void)
|
||||
{
|
||||
printk(KERN_EMERG "This is not a software problem!\n"
|
||||
KERN_EMERG "Run through mcelog --ascii to decode and contact your hardware vendor\n");
|
||||
"Run through mcelog --ascii to decode and contact your hardware vendor\n");
|
||||
}
|
||||
|
||||
#define PANIC_TIMEOUT 5 /* 5 seconds */
|
||||
|
@@ -627,10 +627,9 @@ __init void e820_setup_gap(void)
|
||||
#ifdef CONFIG_X86_64
|
||||
if (!found) {
|
||||
gapstart = (max_pfn << PAGE_SHIFT) + 1024*1024;
|
||||
printk(KERN_ERR "PCI: Warning: Cannot find a gap in the 32bit "
|
||||
"address range\n"
|
||||
KERN_ERR "PCI: Unassigned devices with 32bit resource "
|
||||
"registers may break!\n");
|
||||
printk(KERN_ERR
|
||||
"PCI: Warning: Cannot find a gap in the 32bit address range\n"
|
||||
"PCI: Unassigned devices with 32bit resource registers may break!\n");
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@@ -675,7 +675,7 @@ static __init int init_k8_gatt(struct agp_kern_info *info)
|
||||
nommu:
|
||||
/* Should not happen anymore */
|
||||
printk(KERN_WARNING "PCI-DMA: More than 4GB of RAM and no IOMMU\n"
|
||||
KERN_WARNING "falling back to iommu=soft.\n");
|
||||
"falling back to iommu=soft.\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user