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 71D32C00144 for ; Mon, 1 Aug 2022 19:13:36 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 4E7D483FA1; Mon, 1 Aug 2022 21:13:34 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=chromium.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (1024-bit key; unprotected) header.d=chromium.org header.i=@chromium.org header.b="XfPpZx51"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 8575284051; Mon, 1 Aug 2022 21:13:32 +0200 (CEST) Received: from mail-vs1-xe31.google.com (mail-vs1-xe31.google.com [IPv6:2607:f8b0:4864:20::e31]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 244A28214E for ; Mon, 1 Aug 2022 21:13:30 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=chromium.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=sjg@google.com Received: by mail-vs1-xe31.google.com with SMTP id d187so12291601vsd.10 for ; Mon, 01 Aug 2022 12:13:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=/2NMb/64aQsvatCrllkjs7AB/tD09E97ABwO8CuyDeU=; b=XfPpZx51g3u1hgpGmcg2HedSFkQhnPQICDclUsHbeeFnhf58jgJdCWHovj4aEettp0 ZgArR7ggarBR+nPUfQpNcmeWmLoOGaTPnOrUPSr2ILs4YlM5FZEnSOR89XDqSsTkWSWo tsWa1ml2LnHtJBy1Y5UL1HcsX7JWjUqTkFeGI= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=/2NMb/64aQsvatCrllkjs7AB/tD09E97ABwO8CuyDeU=; b=VyT5MbJ5m8fl5bGJj38o76GFUhaw4Hovq63VGx0CaKjJ8y727cVT4ohW/+xa4yn/CH whyBlL1O6ho+vPf5ho4AQbu+LFbj1d+wTV3LB3w9IdxjQEu+TqW4KTp9FjvCcG1T7MYm efxhQNVl7inZeWpv9sdKeDd02EvMxnG7Na0vQHS5ul8wZANWJk55WCNSkBq7UJM1tjwp MsN9HM3uX8+wrDktQvZKabNWF0ErcR/n4GtWMlF1wak7FMvBoxV9FGbE+fWPIMtXN2N8 3nmQ7xSb57+Ky0lSgCk/OPv4yDWMNmUaZ5l0eG11SWCho4XEsRVZVaaRcbfNDBD75n5u n+iA== X-Gm-Message-State: AJIora81h430dh9Sg36ggNVgGqeKgDgZqMM5KXFGh6HGYv/8G3VMywmP wtFVTc2v6X5Q007VBGQXfOTqVi+4KPAwz0C8uKcuDg== X-Google-Smtp-Source: AGRyM1sJy4PUP9zdOSwdj1LQU/fwIqNXg536HEvKUrpV2ypu1MTYm/xrkyOTL2Tt2YOt7gUwPmZj4K8OZEQ0tTJa6xs= X-Received: by 2002:a05:6102:5107:b0:35a:20e9:9bb7 with SMTP id bm7-20020a056102510700b0035a20e99bb7mr6237071vsb.71.1659381208624; Mon, 01 Aug 2022 12:13:28 -0700 (PDT) MIME-Version: 1.0 References: <20220801131749.353045-1-heinrich.schuchardt@canonical.com> In-Reply-To: <20220801131749.353045-1-heinrich.schuchardt@canonical.com> From: Simon Glass Date: Mon, 1 Aug 2022 13:13:17 -0600 Message-ID: Subject: Re: [PATCH 1/1] cmd: inconsistent return type of command_process() To: Heinrich Schuchardt Cc: Tom Rini , Jagan Teki , U-Boot Mailing List , Sergei Antonov Content-Type: text/plain; charset="UTF-8" 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.6 at phobos.denx.de X-Virus-Status: Clean On Mon, 1 Aug 2022 at 07:18, Heinrich Schuchardt wrote: > > The declarations in the header and in the implementation must match. > > Reported-by: Sergei Antonov > Signed-off-by: Heinrich Schuchardt > --- > include/command.h | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) Reviewed-by: Simon Glass