Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1697039 > unrolled thread

[PATCH] init:main.c: Fixed issues for Block comments and

Started byjanani-sankarababu <jananis37@gmail.com>
First post2017-07-26 14:20 +0200
Last post2017-07-28 04:00 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] init:main.c: Fixed issues for Block comments and janani-sankarababu <jananis37@gmail.com> - 2017-07-26 14:20 +0200
    Re: [PATCH] init:main.c: Fixed issues for Block comments and Steven Rostedt <rostedt@goodmis.org> - 2017-07-28 04:00 +0200

#1697039 — [PATCH] init:main.c: Fixed issues for Block comments and

Fromjanani-sankarababu <jananis37@gmail.com>
Date2017-07-26 14:20 +0200
Subject[PATCH] init:main.c: Fixed issues for Block comments and
Message-ID<u7tse-aO-7@gated-at.bofh.it>
Signed-off-by: Janani S <jananis37@gmail.com>

---
 init/main.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/init/main.c b/init/main.c
index 052481f..f8eb4966 100644
--- a/init/main.c
+++ b/init/main.c
@@ -181,7 +181,8 @@ static bool __init obsolete_checksetup(char *line)
 				/* Already done in parse_early_param?
 				 * (Needs exact match on param part).
 				 * Keep iterating, as we can have early
-				 * params and __setups of same names 8( */
+				 * params and __setups of same names
+				 */
 				if (line[n] == '\0' || line[n] == '=')
 					had_early_param = true;
 			} else if (!p->setup_func) {
@@ -693,9 +694,9 @@ asmlinkage __visible void __init start_kernel(void)
 	arch_post_acpi_subsys_init();
 	sfi_init_late();
 
-	if (efi_enabled(EFI_RUNTIME_SERVICES)) {
+	if (efi_enabled(EFI_RUNTIME_SERVICES))
 		efi_free_boot_services();
-	}
+
 
 	/* Do the rest non-__init'ed, we're now alive */
 	rest_init();
-- 
1.9.1

[toc] | [next] | [standalone]


#1698416

FromSteven Rostedt <rostedt@goodmis.org>
Date2017-07-28 04:00 +0200
Message-ID<u82Jj-5zi-3@gated-at.bofh.it>
In reply to#1697039
On Wed, 26 Jul 2017 17:38:08 +0530
janani-sankarababu <jananis37@gmail.com> wrote:


-ENOCHANGELOG

Also, the subject appears to be half missing.

-- Steve

> Signed-off-by: Janani S <jananis37@gmail.com>
> 
> ---
>  init/main.c | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/init/main.c b/init/main.c
> index 052481f..f8eb4966 100644
> --- a/init/main.c
> +++ b/init/main.c
> @@ -181,7 +181,8 @@ static bool __init obsolete_checksetup(char *line)
>  				/* Already done in parse_early_param?
>  				 * (Needs exact match on param part).
>  				 * Keep iterating, as we can have early
> -				 * params and __setups of same names 8( */
> +				 * params and __setups of same names
> +				 */
>  				if (line[n] == '\0' || line[n] == '=')
>  					had_early_param = true;
>  			} else if (!p->setup_func) {
> @@ -693,9 +694,9 @@ asmlinkage __visible void __init start_kernel(void)
>  	arch_post_acpi_subsys_init();
>  	sfi_init_late();
>  
> -	if (efi_enabled(EFI_RUNTIME_SERVICES)) {
> +	if (efi_enabled(EFI_RUNTIME_SERVICES))
>  		efi_free_boot_services();
> -	}
> +
>  
>  	/* Do the rest non-__init'ed, we're now alive */
>  	rest_init();

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web