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 32E19C3DA78 for ; Tue, 17 Jan 2023 15:33:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231395AbjAQPdK (ORCPT ); Tue, 17 Jan 2023 10:33:10 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37122 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229539AbjAQPdI (ORCPT ); Tue, 17 Jan 2023 10:33:08 -0500 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 90EC53FF20; Tue, 17 Jan 2023 07:33:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:In-Reply-To:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=VQZ7HmGNIOLXCftXZ531kTqZjZKKw65xP3ndBtQciAM=; b=VG5hFdcYWwFqpDE9EAjMtC6qO3 VPHPjGO9Ui0yZNu0fMG3jMdiCkVw0AwY+DLmpfxnZPFaFLvec70QkaYtpLLE1/ZVX9k9gY1PNsv/B 3BqQBK3pZxgsUlXOW9JT4/0TWiom2A0aR9sc313eM3Hm12Q7DEq2g9nxY+pkSEiIP8uFvPJFma9lH CdAcwcv+o2PSAgkPxpbYLA/yvpzzKR6CP7XFjCUem83jH1EC2z2WPhm52LsDSjpAbi9ps03RjNUS/ s0d8ddXwRej5Ma/ElT/UyivbQBHifIoGEokXiWprN719tlzMreAbJ2hoVov2IUDw9957Nl+4bWnGu l263FwYA==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1pHnxQ-00Eqmi-BS; Tue, 17 Jan 2023 15:33:04 +0000 Date: Tue, 17 Jan 2023 07:33:04 -0800 From: Luis Chamberlain To: Christophe JAILLET Cc: gregkh@linuxfoundation.org, russell.h.weight@intel.com, tianfei.zhang@intel.com, shaozhengchao@huawei.com, colin.i.king@gmail.com, error27@gmail.com, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: Re: [PATCH v2] test_firmware: Use kstrtobool() instead of strtobool() Message-ID: References: <34f04735d20e0138695dd4070651bd860a36b81c.1673688120.git.christophe.jaillet@wanadoo.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <34f04735d20e0138695dd4070651bd860a36b81c.1673688120.git.christophe.jaillet@wanadoo.fr> Sender: Luis Chamberlain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Jan 14, 2023 at 10:22:03AM +0100, Christophe JAILLET wrote: > strtobool() is the same as kstrtobool(). > However, the latter is more used within the kernel. > > In order to remove strtobool() and slightly simplify kstrtox.h, switch to > the other function name. > > While at it, include the corresponding header file () > > Signed-off-by: Christophe JAILLET Acked-by: Luis Chamberlain Luis