Commit 4fdb2a05 authored by Joe Perches's avatar Joe Perches Committed by Len Brown

ACPI: Add missing spaces to printk format

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 55b8d50c
...@@ -175,12 +175,12 @@ static int acpi_ec_wait(struct acpi_ec *ec, enum ec_event event, int force_poll) ...@@ -175,12 +175,12 @@ static int acpi_ec_wait(struct acpi_ec *ec, enum ec_event event, int force_poll)
if (acpi_ec_check_status(ec, event)) { if (acpi_ec_check_status(ec, event)) {
if (event == ACPI_EC_EVENT_OBF_1) { if (event == ACPI_EC_EVENT_OBF_1) {
/* miss OBF = 1 GPE, don't expect it anymore */ /* miss OBF = 1 GPE, don't expect it anymore */
printk(KERN_INFO PREFIX "missing OBF_1 confirmation," printk(KERN_INFO PREFIX "missing OBF_1 confirmation, "
"switching to degraded mode.\n"); "switching to degraded mode.\n");
set_bit(EC_FLAGS_ONLY_IBF_GPE, &ec->flags); set_bit(EC_FLAGS_ONLY_IBF_GPE, &ec->flags);
} else { } else {
/* missing GPEs, switch back to poll mode */ /* missing GPEs, switch back to poll mode */
printk(KERN_INFO PREFIX "missing IBF_1 confirmations," printk(KERN_INFO PREFIX "missing IBF_1 confirmations, "
"switch off interrupt mode.\n"); "switch off interrupt mode.\n");
clear_bit(EC_FLAGS_GPE_MODE, &ec->flags); clear_bit(EC_FLAGS_GPE_MODE, &ec->flags);
} }
......
...@@ -647,7 +647,7 @@ static int __cpuinit acpi_processor_start(struct acpi_device *device) ...@@ -647,7 +647,7 @@ static int __cpuinit acpi_processor_start(struct acpi_device *device)
*/ */
if (processor_device_array[pr->id] != NULL && if (processor_device_array[pr->id] != NULL &&
processor_device_array[pr->id] != device) { processor_device_array[pr->id] != device) {
printk(KERN_WARNING "BIOS reported wrong ACPI id" printk(KERN_WARNING "BIOS reported wrong ACPI id "
"for the processor\n"); "for the processor\n");
return -ENODEV; return -ENODEV;
} }
......
...@@ -449,7 +449,7 @@ acpi_tb_parse_root_table(acpi_physical_address rsdp_address, u8 flags) ...@@ -449,7 +449,7 @@ acpi_tb_parse_root_table(acpi_physical_address rsdp_address, u8 flags)
/* XSDT has NULL entry, RSDT is used */ /* XSDT has NULL entry, RSDT is used */
address = rsdt_address; address = rsdt_address;
table_entry_size = sizeof(u32); table_entry_size = sizeof(u32);
ACPI_WARNING((AE_INFO, "BIOS XSDT has NULL entry," ACPI_WARNING((AE_INFO, "BIOS XSDT has NULL entry, "
"using RSDT")); "using RSDT"));
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment