From patchwork Thu Mar 23 11:30:04 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Viresh Kumar X-Patchwork-Id: 95897 Delivered-To: patch@linaro.org Received: by 10.140.89.233 with SMTP id v96csp690224qgd; Thu, 23 Mar 2017 04:31:06 -0700 (PDT) X-Received: by 10.98.42.200 with SMTP id q191mr2437999pfq.73.1490268666047; Thu, 23 Mar 2017 04:31:06 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id e22si5297638pli.167.2017.03.23.04.31.05; Thu, 23 Mar 2017 04:31:06 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=pass header.i=@linaro.org; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754325AbdCWLbE (ORCPT + 15 others); Thu, 23 Mar 2017 07:31:04 -0400 Received: from mail-pf0-f169.google.com ([209.85.192.169]:35329 "EHLO mail-pf0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753935AbdCWLbD (ORCPT ); Thu, 23 Mar 2017 07:31:03 -0400 Received: by mail-pf0-f169.google.com with SMTP id 20so56610304pfk.2 for ; Thu, 23 Mar 2017 04:30:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=d1P8geCH7RNPIDT9tt5F9b99gXy1hjfRMk8Q1gVInBA=; b=cwRZlsrH7buXAHOsWhsjyQE94nVdPSkcG7TWHqfcjB76Hxli+Zm6D/5/HVep97pLG6 oO8z8dvp2+hkMynOpkrJ/OpRRGlX7VV2+Wh3FJe4uhxsa4ryyrZxsLKR+pYeZ/h5/7ti ltnX0xyfVis9gzJKPYwBcjPj08TxUlX/6DPxA= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=d1P8geCH7RNPIDT9tt5F9b99gXy1hjfRMk8Q1gVInBA=; b=jAI+3ho3HQJl9SFJYeJIdHtIYg2i339yNSr75VCEo4Ad8mvxCdUYvqNvkg32KmSgh8 UZjUvATXo0g8QgL/KV0hlwnW3v2oVzGEG1i2v/vKV7IgL/Y6AMGPEXVKb4ySt5WiuLCk qgN2HN8C2nHamV5cETbOaDRj0PWG/gCpMS9VPUp1ZUMU6HmrNGwf4SoRNv01G+alTyAV qvibTeHRW+FVQxdthFxNBm349TQrhuE5aruq0e/NbouGR7vG+aOv9VDtd+j+luEYWj+1 CjAX5EWgdQHZdoElWXkrs0vVUjy1i1ElN397gmkov4GWQfcFJGYLkMG21kRweaEizqpW krQQ== X-Gm-Message-State: AFeK/H3q81Pee7AcBVzCOb5TyJuAGmRAByUfP3E3mmsDZehaCaRHG7f/4wg+aoeD68MDyjJ4 X-Received: by 10.99.150.1 with SMTP id c1mr2358012pge.160.1490268611870; Thu, 23 Mar 2017 04:30:11 -0700 (PDT) Received: from localhost ([122.171.239.200]) by smtp.gmail.com with ESMTPSA id y64sm9781724pfy.3.2017.03.23.04.30.10 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 23 Mar 2017 04:30:11 -0700 (PDT) From: Viresh Kumar To: Jiri Kosina Cc: linaro-kernel@lists.linaro.org, Vincent Guittot , Viresh Kumar , linux-kernel@vger.kernel.org Subject: [PATCH 1/2] init/main: Fix double "the" in comment Date: Thu, 23 Mar 2017 17:00:04 +0530 Message-Id: <12f1bef4d10fd11da715e205b689cb5187087401.1490268569.git.viresh.kumar@linaro.org> X-Mailer: git-send-email 2.12.0.432.g71c3a4f4ba37 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org s/the\ the/the Signed-off-by: Viresh Kumar --- init/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.12.0.432.g71c3a4f4ba37 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(); From patchwork Thu Mar 23 11:30:05 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Viresh Kumar X-Patchwork-Id: 95898 Delivered-To: patch@linaro.org Received: by 10.140.89.233 with SMTP id v96csp690268qgd; Thu, 23 Mar 2017 04:31:08 -0700 (PDT) X-Received: by 10.99.44.209 with SMTP id s200mr2300005pgs.103.1490268667926; Thu, 23 Mar 2017 04:31:07 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id e22si5297638pli.167.2017.03.23.04.31.07; Thu, 23 Mar 2017 04:31:07 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=pass header.i=@linaro.org; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754964AbdCWLbG (ORCPT + 15 others); Thu, 23 Mar 2017 07:31:06 -0400 Received: from mail-pg0-f53.google.com ([74.125.83.53]:35997 "EHLO mail-pg0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753936AbdCWLbD (ORCPT ); Thu, 23 Mar 2017 07:31:03 -0400 Received: by mail-pg0-f53.google.com with SMTP id g2so121620165pge.3 for ; Thu, 23 Mar 2017 04:30:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=ThGApNtkTVFIVMCokHRyDKLMEchenizWcIiRa+Q7m9I=; b=OPlgLWLQ+uTeCZqVTdM1X19fGcc5ULrICLm68B87YWwsYbIxQDiDMN4HJ6foNY2+OG rcMAWsruXTOw7WiSpybQF5u+1wiv/8ZEGExz0e6Atd44KDzIp14zaKt28Hk2koYSfJZH aH1L86Ei1ie645YKTeW362VFrD9Igs0QEmz04= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=ThGApNtkTVFIVMCokHRyDKLMEchenizWcIiRa+Q7m9I=; b=gP9z5XZiuCSEL5kdmO1UNXY3mD8SDxMcU8ogCjB38Rs9CbvJfHiXd8nkAhVZSfVgWX lIdczMQU7scAWjILIvNLXbciBFjW4pXo7VTXiCrVgin+ZmwdyIWc1IBK61qFXqZob+tD zTO4awCeSDJsqExyFgg9k6XrIHMRWxmzVeFUJBc6br5x1p74cVcrA39W1ooM5T1ZPRNx BebGaN/9qPDfKpw4y3m1gq7y6ZspWsAknAG5IjxJjuMsfSnvKaqaUclmXa4dboucf0kq WK1XpwHLasON+6J0gp2KNihhUYEnmjclz9/jDv5LSBMQGOt7c4MSpxcjW/IyHgzTsMLT QXOg== X-Gm-Message-State: AFeK/H2vFkjkbnkwt9j78rY9S4Ec4hTUp9pRPmFKzVXloC7k7CAqKf3PY9yw1HDRyQHvo4jp X-Received: by 10.98.157.12 with SMTP id i12mr2461732pfd.166.1490268617754; Thu, 23 Mar 2017 04:30:17 -0700 (PDT) Received: from localhost ([122.171.239.200]) by smtp.gmail.com with ESMTPSA id i15sm8265756pfj.51.2017.03.23.04.30.16 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 23 Mar 2017 04:30:17 -0700 (PDT) From: Viresh Kumar To: Jiri Kosina Cc: linaro-kernel@lists.linaro.org, Vincent Guittot , Viresh Kumar , linux-kernel@vger.kernel.org Subject: [PATCH 2/2] init/main: properly align the multi-line comment Date: Thu, 23 Mar 2017 17:00:05 +0530 Message-Id: <509242ba6557a800d8ca6719cc1766d086becf47.1490268569.git.viresh.kumar@linaro.org> X-Mailer: git-send-email 2.12.0.432.g71c3a4f4ba37 In-Reply-To: <12f1bef4d10fd11da715e205b689cb5187087401.1490268569.git.viresh.kumar@linaro.org> References: <12f1bef4d10fd11da715e205b689cb5187087401.1490268569.git.viresh.kumar@linaro.org> In-Reply-To: <12f1bef4d10fd11da715e205b689cb5187087401.1490268569.git.viresh.kumar@linaro.org> References: <12f1bef4d10fd11da715e205b689cb5187087401.1490268569.git.viresh.kumar@linaro.org> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add a tab before it to follow standard practices. Also add the missing full stop '.'. Signed-off-by: Viresh Kumar --- init/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) -- 2.12.0.432.g71c3a4f4ba37 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);