[PATCH] ARM: atags: Be silent about missing ATAGs

Paul Kocialkowski posted 1 patch 1 month, 4 weeks ago
arch/arm/kernel/atags_proc.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
[PATCH] ARM: atags: Be silent about missing ATAGs
Posted by Paul Kocialkowski 1 month, 4 weeks ago
From: Paul Kocialkowski <contact@paulk.fr>

While the ATAGs functionality is still available in the kernel, it has
been deprecated for a long time already and probably has very few users
left.

Stop printing a message when ATAGs are not found since this is now the
situation most users will expect.

Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
---
 arch/arm/kernel/atags_proc.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/arch/arm/kernel/atags_proc.c b/arch/arm/kernel/atags_proc.c
index cd09f8ab93e3..6643fffecfb7 100644
--- a/arch/arm/kernel/atags_proc.c
+++ b/arch/arm/kernel/atags_proc.c
@@ -41,10 +41,8 @@ static int __init init_atags_procfs(void)
 	struct buffer *b;
 	size_t size;
 
-	if (tag->hdr.tag != ATAG_CORE) {
-		pr_info("No ATAGs?\n");
+	if (tag->hdr.tag != ATAG_CORE)
 		return -EINVAL;
-	}
 
 	for (; tag->hdr.size; tag = tag_next(tag))
 		;
-- 
2.46.2