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 66A48D4A60E for ; Fri, 16 Jan 2026 08:35:21 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id C6FB483015; Fri, 16 Jan 2026 09:35:19 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=kernel.org 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=kernel.org header.i=@kernel.org header.b="tnBN5Z5U"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 5FBC18309A; Fri, 16 Jan 2026 09:35:19 +0100 (CET) Received: from tor.source.kernel.org (tor.source.kernel.org [172.105.4.254]) (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 66B4982BF2 for ; Fri, 16 Jan 2026 09:35:17 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=mkorpershoek@kernel.org Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by tor.source.kernel.org (Postfix) with ESMTP id 3AA006016B; Fri, 16 Jan 2026 08:35:16 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 73182C116C6; Fri, 16 Jan 2026 08:35:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1768552515; bh=5D3wbBf0BHzRIUy7DnfGeTJT6DKCeReqBJUaiIQ203Y=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=tnBN5Z5UTJXQO1gyoDKb55AkHCoJ2SjndYupbGQAahTss5XuVu+1Ny+twDW78IBow ArxyKzfv5kNe6XIXv4VqX5Dj7hS7MabnRLVDXcBusHlkUEnxBl/O9QCI4NYvul5Fob 1QqewCpkLGmbWs18aoXCr3URL1UMGN5h3nQmMHHXYhlFInF1qDQa7ONz+mO3ENj8Qw qO0hixz2tu/c4TABvb66XvZOrWZbYiZyTzpoqvXYTnDfbwtMVjPIbaHyS4LB7NvIFb 2Q/Urpx1zxRmRpdvs2MoD9DJ7sdvemGxe66f15r5RrlyoR4nlGHCPN8cxcPN9JnGRQ fYU1HgDVj18JA== From: Mattijs Korpershoek To: "Markus Schneider-Pargmann (TI.com)" , u-boot@lists.denx.de, Mattijs Korpershoek Cc: Simon Glass , Tom Rini , Marek Vasut , Andrew Goodbody , Kory Maincent , Svyatoslav Ryhel , Christian Marangi , Dinesh Maniyam , Heiko Schocher , "Markus Schneider-Pargmann (TI.com)" , Simon Glass Subject: Re: [PATCH v3 4/6] test: dm: Add compatible multimatch test In-Reply-To: <20260114-topic-musb-probing-v2026-01-v3-4-ebb8d990b9df@baylibre.com> References: <20260114-topic-musb-probing-v2026-01-v3-0-ebb8d990b9df@baylibre.com> <20260114-topic-musb-probing-v2026-01-v3-4-ebb8d990b9df@baylibre.com> Date: Fri, 16 Jan 2026 09:35:13 +0100 Message-ID: <87ldhydkfy.fsf@kernel.org> MIME-Version: 1.0 Content-Type: text/plain 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 Hi Markus, Thank you for the patch. On Wed, Jan 14, 2026 at 09:33, "Markus Schneider-Pargmann (TI.com)" wrote: > Add a test for binding of multiple drivers with the same compatible. If > one of the drivers returns -ENODEV the other one needs to be bound. > > Reviewed-by: Simon Glass > Signed-off-by: Markus Schneider-Pargmann (TI.com) Reviewed-by: Mattijs Korpershoek > --- > arch/sandbox/dts/test.dts | 4 ++++ > test/dm/core.c | 15 +++++++++++++++ > test/dm/test-driver.c | 26 ++++++++++++++++++++++++++ > 3 files changed, 45 insertions(+) >