From: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Date: Wed, 18 Feb 2015 07:05:43 +0000 (+0100)
Subject: ACPI / resources: Change pr_info() to pr_debug() for debug information
X-Git-Tag: firefly_0821_release~176^2~2247^2~1^5
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6a239af2a3698c488aee798670eca772eb74890b;p=firefly-linux-kernel-4.4.55.git

ACPI / resources: Change pr_info() to pr_debug() for debug information

Annoying and noisy ACPI debug messages are printed with pr_info()
after the recent ACPI resources handling rework.  Replace the
pr_info() with pr_debug() to reduce to noise level.

Reported-by: Borislav Petkov <bp@alien8.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
---

diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
index 4752b9939987..c723668e3e27 100644
--- a/drivers/acpi/resource.c
+++ b/drivers/acpi/resource.c
@@ -46,7 +46,7 @@ static bool acpi_dev_resource_len_valid(u64 start, u64 end, u64 len, bool io)
 	if (len && reslen && reslen == len && start <= end)
 		return true;
 
-	pr_info("ACPI: invalid or unassigned resource %s [%016llx - %016llx] length [%016llx]\n",
+	pr_debug("ACPI: invalid or unassigned resource %s [%016llx - %016llx] length [%016llx]\n",
 		io ? "io" : "mem", start, end, len);
 
 	return false;