From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 48558C32793 for ; Tue, 23 Aug 2022 08:16:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242499AbiHWIP0 (ORCPT ); Tue, 23 Aug 2022 04:15:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:32864 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S242224AbiHWIKy (ORCPT ); Tue, 23 Aug 2022 04:10:54 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D919BC6D; Tue, 23 Aug 2022 01:08:12 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 2DB0BB81C24; Tue, 23 Aug 2022 08:08:11 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 66394C433D6; Tue, 23 Aug 2022 08:08:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1661242089; bh=XV+sDCF2H0TMW3uVGya0oLcmGejz6RfqmHqZJx6l0Ig=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hV0CNtp1ft7qPG4hjm2UuQzyYdBZKAGSE3XGnZzMXZ5VlGweF/Hoohde3RHXB6fg4 ioE43gv3UvyH1pJCD2VUdCUF6RwrLUo1/qnKJXfkb3jJJYR3eHwmudyDr5GxYnoyhR 5MehmXa3Uu7aBCSVzvOe4rcTR8+NSqpMf69Y/ns8= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Viresh Kumar , Jiri Kosina , Hans-Christian Noren Egtvedt Subject: [PATCH 4.9 017/101] init/main: Fix double "the" in comment Date: Tue, 23 Aug 2022 10:02:50 +0200 Message-Id: <20220823080035.225456988@linuxfoundation.org> X-Mailer: git-send-email 2.37.2 In-Reply-To: <20220823080034.579196046@linuxfoundation.org> References: <20220823080034.579196046@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Viresh Kumar commit 6623f1c6150c09ce946c8e27a4c814d64919495b upstream. s/the\ the/the Signed-off-by: Viresh Kumar Signed-off-by: Jiri Kosina Signed-off-by: Hans-Christian Noren Egtvedt Signed-off-by: Greg Kroah-Hartman --- init/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/init/main.c +++ b/init/main.c @@ -488,7 +488,7 @@ asmlinkage __visible void __init start_k debug_objects_early_init(); /* - * Set up the the initial canary ASAP: + * Set up the initial canary ASAP: */ add_latent_entropy(); boot_init_stack_canary();