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 62179C433F5 for ; Sun, 2 Oct 2022 19:10:56 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id A632E84949; Sun, 2 Oct 2022 21:10:53 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=suse.de 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=suse.de header.i=@suse.de header.b="1LODeMx4"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="9W+PAeE5"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 069C4849CD; Sun, 2 Oct 2022 21:10:51 +0200 (CEST) Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) (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 4F035848DC for ; Sun, 2 Oct 2022 21:10:48 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=msuchanek@suse.de Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out2.suse.de (Postfix) with ESMTP id 126791F90E; Sun, 2 Oct 2022 19:10:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1664737848; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=AbfFu59suNohnFt5u1Hbp1d7oJ8Ud2QcjJzOYsKi23w=; b=1LODeMx4S+2zV13akGklqB6A/j6CvOXXR3PRSUfBP05m7yjXPTxYcJRuCgC17dYaxUiQQ9 TSEfzYySktU0TPGmgb4MEsTSZ6wgUTp1QU8KW3VQXqMzyHcnqWDWNvsGKvigRauN3IlCq5 HS089aFW77HbO0StVdYJMImwSb6wPIE= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1664737848; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=AbfFu59suNohnFt5u1Hbp1d7oJ8Ud2QcjJzOYsKi23w=; b=9W+PAeE5wkTzgQXrmrpt/MSb3eMy7Nf4OqD5DwY70P3QcHTNyLaWKJ3MFLOUkiP6F5vC5e P+gvF2kria/bKrAw== Received: from kitsune.suse.cz (kitsune.suse.cz [10.100.12.127]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by relay2.suse.de (Postfix) with ESMTPS id B4D5D2C141; Sun, 2 Oct 2022 19:10:47 +0000 (UTC) Date: Sun, 2 Oct 2022 21:10:46 +0200 From: Michal =?iso-8859-1?Q?Such=E1nek?= To: Simon Glass Cc: U-Boot Mailing List , Heinrich Schuchardt , Marek Vasut , Samuel Dionne-Riel , Vyacheslav Bocharov , Diego Rondini Subject: Re: [PATCH v5 09/15] cmd: List all uclass devices regardless of probe error Message-ID: <20221002191046.GA28810@kitsune.suse.cz> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) 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 Hello, On Thu, Sep 29, 2022 at 04:00:42AM -0600, Simon Glass wrote: > On Tue, 27 Sept 2022 at 15:38, Michal Suchanek wrote: > > > > There are a few commands that iterate uclass with > > uclass_first_device/uclass_next_device or the _err variant. > > > > Use the _check class iterator variant to get devices that fail to probe > > as well, and print the status. > > > > Signed-off-by: Michal Suchanek > > --- > > cmd/adc.c | 22 ++++++++++------------ > > cmd/demo.c | 16 ++++++++++------ > > cmd/gpio.c | 15 +++++++++++---- > > cmd/pmic.c | 15 ++++++++------- > > cmd/regulator.c | 13 +++++++------ > > 5 files changed, 46 insertions(+), 35 deletions(-) > > With the errno change dropped: Can you be please more sspecific about 'the errno change' and the problem with it? Thanks Michal > > Reviewed-by: Simon Glass