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();