From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean-Jacques Hiblot Date: Mon, 13 May 2019 12:28:38 +0200 Subject: [U-Boot] [PATCH v1 03/18] dm: Add a No-op uclass In-Reply-To: References: <20190405125554.18070-1-jjhiblot@ti.com> <20190405125554.18070-4-jjhiblot@ti.com> Message-ID: <8a645e84-4135-25e5-7049-a46c789a19dd@ti.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Simon, On 07/05/2019 05:52, Simon Glass wrote: > Hi Jean-Jacques, > > On Fri, 5 Apr 2019 at 06:56, Jean-Jacques Hiblot wrote: >> This uclass is intended for devices that do not need any features from the >> uclass, including binding children. >> This will typically be used by devices that are used to bind child devices >> but do not use dm_scan_fdt_dev() to do it. That is for example the case of >> several USB wrappers that have 2 child devices (1 for device and 1 for >> host) but bind only one at a any given time. >> >> Signed-off-by: Jean-Jacques Hiblot >> --- >> >> drivers/core/uclass.c | 5 +++++ >> include/dm/uclass-id.h | 1 + >> 2 files changed, 6 insertions(+) > Is there a test for this somewhere? It will be part of the v2. JJ > > - Simon >