From 6623f1c6150c09ce946c8e27a4c814d64919495b Mon Sep 17 00:00:00 2001 From: Viresh Kumar Date: Thu, 23 Mar 2017 17:00:04 +0530 Subject: init/main: Fix double "the" in comment s/the\ the/the Signed-off-by: Viresh Kumar Signed-off-by: Jiri Kosina --- init/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'init/main.c') diff --git a/init/main.c b/init/main.c index f9c9d9948203..717b2ab803e5 100644 --- a/init/main.c +++ b/init/main.c @@ -495,7 +495,7 @@ asmlinkage __visible void __init start_kernel(void) debug_objects_early_init(); /* - * Set up the the initial canary ASAP: + * Set up the initial canary ASAP: */ boot_init_stack_canary(); -- cgit From 1b3b3b49b9961401331a1b496db5bec5c7b41ae6 Mon Sep 17 00:00:00 2001 From: Viresh Kumar Date: Thu, 23 Mar 2017 17:00:05 +0530 Subject: init/main: properly align the multi-line comment Add a tab before it to follow standard practices. Also add the missing full stop '.'. Signed-off-by: Viresh Kumar Signed-off-by: Jiri Kosina --- init/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'init/main.c') diff --git a/init/main.c b/init/main.c index 717b2ab803e5..7bb8e845a8a1 100644 --- a/init/main.c +++ b/init/main.c @@ -504,10 +504,10 @@ asmlinkage __visible void __init start_kernel(void) local_irq_disable(); early_boot_irqs_disabled = true; -/* - * Interrupts are still disabled. Do necessary setups, then - * enable them - */ + /* + * Interrupts are still disabled. Do necessary setups, then + * enable them. + */ boot_cpu_init(); page_address_init(); pr_notice("%s", linux_banner); -- cgit