From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Mon, 6 May 2019 21:52:18 -0600 Subject: [U-Boot] [PATCH v1 03/18] dm: Add a No-op uclass In-Reply-To: <20190405125554.18070-4-jjhiblot@ti.com> References: <20190405125554.18070-1-jjhiblot@ti.com> <20190405125554.18070-4-jjhiblot@ti.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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? - Simon