[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20131103122724.GA5300@dhcp-16-126.nay.redhat.com>
Date: Sun, 3 Nov 2013 20:27:24 +0800
From: Dave Young <dyoung@...hat.com>
To: akpm@...ux-foundation.org, linux-kernel@...r.kernel.org
Subject: [PATCH] boot_delay return value fix
Kernel report "Malformed early option boot_delay" because it returns non-zero
value. Move to 'return 0' now because there's no reason it should return 1.
Signed-off-by: Dave Young <dyoung@...hat.com>
---
Andrew, It's based on previous patch of changing to early_param.
Feel free to fold them if you want. If need I repost please just tell me.
kernel/printk/printk.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- linux-2.6.orig/kernel/printk/printk.c
+++ linux-2.6/kernel/printk/printk.c
@@ -820,7 +820,7 @@ static int __init boot_delay_setup(char
pr_debug("boot_delay: %u, preset_lpj: %ld, lpj: %lu, "
"HZ: %d, loops_per_msec: %llu\n",
boot_delay, preset_lpj, lpj, HZ, loops_per_msec);
- return 1;
+ return 0;
}
early_param("boot_delay", boot_delay_setup);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists