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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 201CFEB64DC for ; Mon, 17 Jul 2023 12:27:34 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id E9B968666F; Mon, 17 Jul 2023 14:27:32 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=collabora.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=collabora.com header.i=@collabora.com header.b="G5jpEygL"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 57BB886671; Mon, 17 Jul 2023 14:27:31 +0200 (CEST) Received: from madras.collabora.co.uk (madras.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e5ab]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 1A47286660 for ; Mon, 17 Jul 2023 14:27:29 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=collabora.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=detlev.casanova@collabora.com Received: from arisu.localnet (unknown [23.233.251.139]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: detlev) by madras.collabora.co.uk (Postfix) with ESMTPSA id D7BC466028F5; Mon, 17 Jul 2023 13:27:27 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1689596848; bh=E1aiYg7HPLD/Yd8BfpcJEu5Gp5s7LXH8j0wbytplGiU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=G5jpEygLSqWNDeRSs/SpbXMFTM6IqSHTyNEnIdj8YFMD0vtG0Wxk93P15R/e7JiGA euRMwuluUPf7fNyFlDqwuhj7lZ7LQoEnO5Y+BBLOU8sb3sJzR6zG8f4MRHtTFwuliT waXHjLSpfSgdQrOnzxJ7GvEmrYEBCcNQudrb2SknEzbfveVunfS6Htz0iOh5YnkiB7 M3ITXCW1aws+EuWODqtK97w0q32jqnNQOPXOBlztvpb5xeDGep15sQ4J8Y4KDs6L3u Xc5XZCpeKtdAyiRrHr7GS4GLUN7iHG7mnk8eY54XvRTFiGRdpU5wBzvFPbEIlrAges A988TO4qtFUEA== From: Detlev Casanova To: u-boot@lists.denx.de, Marek Vasut Cc: Marek Vasut , Hai Pham , Tam Nguyen , Simon Glass Subject: Re: [PATCH v3 4/6] sysinfo: Add documentation Date: Mon, 17 Jul 2023 08:27:32 -0400 Message-ID: <3816228.mvXUDI8C0e@arisu> In-Reply-To: <0f6036d7-0d7c-0434-ad34-4aefdaac89a3@mailbox.org> References: <20230714164424.838842-1-detlev.casanova@collabora.com> <20230714164424.838842-5-detlev.casanova@collabora.com> <0f6036d7-0d7c-0434-ad34-4aefdaac89a3@mailbox.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean On Friday, July 14, 2023 1:31:00 P.M. EDT Marek Vasut wrote: > On 7/14/23 18:43, Detlev Casanova wrote: > > [...] > > > +Return value > > +------------ > > + > > +The return value $? is set to 0 (true) if the command succededd > > succeeded -- typo > > . If an > > > +error occurs, the return value $? is set to 1 (false). > > With that fixed: > > Reviewed-by: Marek Vasut Do you need me to make a patch v4 to fix this ?