Commit dd8e908e authored by Joe Perches's avatar Joe Perches Committed by Matthew Garrett

wmi: Removed trailing whitespace from logging message.

Just neatening.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarMatthew Garrett <mjg@redhat.com>
parent 7e33460d
...@@ -486,16 +486,16 @@ static void wmi_dump_wdg(const struct guid_block *g) ...@@ -486,16 +486,16 @@ static void wmi_dump_wdg(const struct guid_block *g)
pr_info("\tnotify_id: %02X\n", g->notify_id); pr_info("\tnotify_id: %02X\n", g->notify_id);
pr_info("\treserved: %02X\n", g->reserved); pr_info("\treserved: %02X\n", g->reserved);
pr_info("\tinstance_count: %d\n", g->instance_count); pr_info("\tinstance_count: %d\n", g->instance_count);
pr_info("\tflags: %#x ", g->flags); pr_info("\tflags: %#x", g->flags);
if (g->flags) { if (g->flags) {
if (g->flags & ACPI_WMI_EXPENSIVE) if (g->flags & ACPI_WMI_EXPENSIVE)
pr_cont("ACPI_WMI_EXPENSIVE "); pr_cont(" ACPI_WMI_EXPENSIVE");
if (g->flags & ACPI_WMI_METHOD) if (g->flags & ACPI_WMI_METHOD)
pr_cont("ACPI_WMI_METHOD "); pr_cont(" ACPI_WMI_METHOD");
if (g->flags & ACPI_WMI_STRING) if (g->flags & ACPI_WMI_STRING)
pr_cont("ACPI_WMI_STRING "); pr_cont(" ACPI_WMI_STRING");
if (g->flags & ACPI_WMI_EVENT) if (g->flags & ACPI_WMI_EVENT)
pr_cont("ACPI_WMI_EVENT "); pr_cont(" ACPI_WMI_EVENT");
} }
pr_cont("\n"); pr_cont("\n");
......
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