aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Cooper <andrew.cooper3@citrix.com>2013-04-02 10:59:34 +0200
committerJan Beulich <jbeulich@suse.com>2013-04-02 10:59:34 +0200
commit67e5f2ad3885d1ce27b02732f11e3010ee58d540 (patch)
tree985e1b4ef666295968eb851cf288cb5bf5e83343
parenta44b0a5538c26f993b72fbd083c3d3c216fa8ca8 (diff)
downloadxen-67e5f2ad3885d1ce27b02732f11e3010ee58d540.tar.gz
xen-67e5f2ad3885d1ce27b02732f11e3010ee58d540.tar.bz2
xen-67e5f2ad3885d1ce27b02732f11e3010ee58d540.zip
ACPI/ERST: Name table in otherwise opaque error messages
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com> Fix spelling and lower severities. Signed-off-by: Jan Beulich <jbeulich@suse.com> master changeset: 759847e44401176401e86e7c55b644cb9f93c781 master date: 2013-03-20 10:02:52 +0100
-rw-r--r--xen/drivers/acpi/apei/erst.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/drivers/acpi/apei/erst.c b/xen/drivers/acpi/apei/erst.c
index 46fcff570c..1e420c5203 100644
--- a/xen/drivers/acpi/apei/erst.c
+++ b/xen/drivers/acpi/apei/erst.c
@@ -788,11 +788,11 @@ int __init erst_init(void)
status = acpi_get_table(ACPI_SIG_ERST, 0,
(struct acpi_table_header **)&erst_tab);
if (status == AE_NOT_FOUND) {
- printk(KERN_ERR "Table is not found!\n");
+ printk(KERN_INFO "ERST table was not found\n");
return -ENODEV;
} else if (ACPI_FAILURE(status)) {
const char *msg = acpi_format_exception(status);
- printk(KERN_ERR "Failed to get table, %s\n", msg);
+ printk(KERN_WARNING "Failed to get ERST table: %s\n", msg);
return -EINVAL;
}