Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751739AbdGZMMm (ORCPT ); Wed, 26 Jul 2017 08:12:42 -0400 Received: from mail-pf0-f196.google.com ([209.85.192.196]:37388 "EHLO mail-pf0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751697AbdGZMMk (ORCPT ); Wed, 26 Jul 2017 08:12:40 -0400 From: janani-sankarababu To: mingo@kernel.org Cc: akpm@linux-foundation.org, keescook@chromium.org, jeyu@redhat.com, tglx@linutronix.de, rostedt@goodmis.org, viresh.kumar@linaro.org, tj@kernel.org, prarit@redhat.com, lokeshvutla@ti.com, linux-kernel@vger.kernel.org, janani-sankarababu Subject: [PATCH] init:main.c: Fixed issues for Block comments and Date: Wed, 26 Jul 2017 17:38:08 +0530 Message-Id: <1501070889-15209-1-git-send-email-jananis37@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 962 Lines: 34 Signed-off-by: Janani S --- 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