From ca22ccd7cdbb6b2bd720dd7e14280ee1efa29074 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Tue, 22 Jul 2014 21:57:51 +0200 Subject: Revert "common: resource: print conflicts as warning" On several i.MX boards we register SDRAM with the values from the SDRAM controller and also with values from the device tree. This now issues a warning each time the board is started. Revert the commit for now. A better solution might be to check if the same SDRAM region already exists before trying to register it again. This reverts commit c9e2e08edcdce4205821226817686e62dc349eab. Signed-off-by: Sascha Hauer --- common/resource.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/resource.c') diff --git a/common/resource.c b/common/resource.c index 1ea2a7522a..fe4680e3bd 100644 --- a/common/resource.c +++ b/common/resource.c @@ -71,7 +71,7 @@ struct resource *__request_region(struct resource *parent, goto ok; if (start > r->end) continue; - pr_warn("%s: 0x%08llx:0x%08llx conflicts with 0x%08llx:0x%08llx\n", + debug("%s: 0x%08llx:0x%08llx conflicts with 0x%08llx:0x%08llx\n", __func__, (unsigned long long)start, (unsigned long long)end, -- cgit v1.2.3