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 CBB01C4332F for ; Tue, 1 Nov 2022 21:21:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230521AbiKAVVj (ORCPT ); Tue, 1 Nov 2022 17:21:39 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42444 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230386AbiKAVVU (ORCPT ); Tue, 1 Nov 2022 17:21:20 -0400 Received: from smtp.smtpout.orange.fr (smtp-14.smtpout.orange.fr [80.12.242.14]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D787420356 for ; Tue, 1 Nov 2022 14:18:49 -0700 (PDT) Received: from [192.168.1.18] ([86.243.100.34]) by smtp.orange.fr with ESMTPA id pyekoYyrKtFxApyekoGquo; Tue, 01 Nov 2022 22:18:47 +0100 X-ME-Helo: [192.168.1.18] X-ME-Auth: Y2hyaXN0b3BoZS5qYWlsbGV0QHdhbmFkb28uZnI= X-ME-Date: Tue, 01 Nov 2022 22:18:47 +0100 X-ME-IP: 86.243.100.34 Message-ID: <6ae45ada-19fa-a633-6c60-c715686e4859@wanadoo.fr> Date: Tue, 1 Nov 2022 22:18:46 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.2.2 Subject: Re: [PATCH 30/30] kstrtox: Remove strtobool() Content-Language: fr, en-US Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org References: From: Christophe JAILLET In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit To: unlisted-recipients:; (no To-header on input) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Le 01/11/2022 à 22:14, Christophe JAILLET a écrit : > strtobool() is the same as kstrtobool(). > All uses of strtobool() have been turned into kstrtobool(). > > So strtobool() can now be removed as well. > > Signed-off-by: Christophe JAILLET > --- > include/linux/kernel.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/kernel.h b/include/linux/kernel.h > index fe6efb24d151..244b92041cb0 100644 > --- a/include/linux/kernel.h > +++ b/include/linux/kernel.h > @@ -20,7 +20,7 @@ > #include > #include > #include > -#include > +//#include > #include > #include > #include Ouch, the last patch is not what was expected... I'll send it separately when the other patches are merged. CJ