Gitweb: http://git.kernel.org/linus/980533b018fda7ae4c4fb6863b75a0e282d2ffd2 Commit: 980533b018fda7ae4c4fb6863b75a0e282d2ffd2 Parent: 985b823b919273fe1327d56d2196b4f92e5d0fae Author: Daniel J Blueman <daniel.blueman@gmail.com> AuthorDate: Thu Jul 1 23:27:11 2010 +0100 Committer: Linus Torvalds <torvalds@linux-foundation.org> CommitDate: Thu Jul 1 18:40:29 2010 -0700 correct console log level when ERST ACPI table is not found When booting 2.6.35-rc3 on a x86 system without an ERST ACPI table with the 'quiet' option, we still observe an "ERST: Table is not found!" warning. Quiesce it to the same info log level as the other 'table not found' warnings. Signed-off-by: Daniel J Blueman <daniel.blueman@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> --- drivers/acpi/apei/erst.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/acpi/apei/erst.c b/drivers/acpi/apei/erst.c index 2ebc391..864dd46 100644 --- a/drivers/acpi/apei/erst.c +++ b/drivers/acpi/apei/erst.c @@ -781,7 +781,7 @@ static int __init erst_init(void) status = acpi_get_table(ACPI_SIG_ERST, 0, (struct acpi_table_header **)&erst_tab); if (status == AE_NOT_FOUND) { - pr_err(ERST_PFX "Table is not found!\n"); + pr_info(ERST_PFX "Table is not found!\n"); goto err; } else if (ACPI_FAILURE(status)) { const char *msg = acpi_format_exception(status); -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
