From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AA2F21862A; Fri, 8 May 2026 18:26:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778264763; cv=none; b=cJvcbkQwU/SmUP2RIT3zmJFtjmcgoQmh+RJiYSUhqIX9mEC0uE1+hQAhcFDrSPQaALF6j1DKw8TL8YfXauBsIWAobbLcBS+Hq6XlDuiT5dkbWTmB4eywr7KOuMjgGTKwgKbQ9QFHZw5zA3FGnNxqF36KJFHJ5WwOb2ldeAkBjLQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778264763; c=relaxed/simple; bh=38qbE3vXEBRan4uOHnNqJ8N8mEhisyv5CbhWDXO+zuE=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=i8vw3u8biK9PePaEe2DtlTrJcWK8Jh3X/2oeHPUpw513MkLdpMybmcHfL7wSb2hIbrRGcZG5t/EaXVt26oQfvC2ZPBme1Ffbqfi9RWyvblDdlVimdBORIAhJ2b48BH+kOTKLcgISX9AzqqVhQtNe7wY+cHFJl7Es6r5c5canlfk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=EJyMfAqU; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="EJyMfAqU" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1EA0CC2BCB0; Fri, 8 May 2026 18:26:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778264763; bh=38qbE3vXEBRan4uOHnNqJ8N8mEhisyv5CbhWDXO+zuE=; h=From:To:Cc:Subject:Date:From; b=EJyMfAqUbxcjjWdW1xL/1Tj3WYb6ZVMDdFdQUJ6tpQGj+TutHpgtiXxaMgg2RX+i3 AVlv4rUz7sOIp0sIlTJDDXAB247UjdqNrRqtbPdRPxICIjhYsPO0saeJp8KbzNhyYm 6dDqmLmJ9eGDPnQOO/rGGV0cgVkhAQ2TLJ/SXBmFdoBroaeIuLf68ySeNcSYYwVi03 rQgifzDP2GL/wboStz5euvAHpBRghipCNp4QqU8CEEBrVS9ingZen9isAZHSTUdX03 ykv+P9vu22SR+GDLfxpC24KT1lJbPVRTUwKxi0owcXKEjL0tAPrVwu0p3ooBvOS+FX 2EELICS+IZ0BA== From: "Rob Herring (Arm)" To: Greg Kroah-Hartman , Krzysztof Kozlowski , Conor Dooley , Felipe Balbi , Charan Pedumuru Cc: linux-usb@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] dt-bindings: usb: ti,omap4-musb: Drop duplicate 'usb-phy' property constraints Date: Fri, 8 May 2026 13:25:55 -0500 Message-ID: <20260508182556.1759173-1-robh@kernel.org> X-Mailer: git-send-email 2.53.0 Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit The deprecated 'usb-phy' property is documented already in usb.yaml and doesn't need a type definition here. It just needs constraints on how many entries there are. As this is a host controller, reference usb-hcd.yaml which then references usb.yaml. Fixes: 70fcdc82cf4a ("dt-bindings: usb: ti,omap4-musb: convert to DT schema") Signed-off-by: Rob Herring (Arm) --- Documentation/devicetree/bindings/usb/ti,omap4-musb.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Documentation/devicetree/bindings/usb/ti,omap4-musb.yaml b/Documentation/devicetree/bindings/usb/ti,omap4-musb.yaml index a3d15f217658..e1887e490e02 100644 --- a/Documentation/devicetree/bindings/usb/ti,omap4-musb.yaml +++ b/Documentation/devicetree/bindings/usb/ti,omap4-musb.yaml @@ -81,9 +81,7 @@ properties: const: usb2-phy usb-phy: - $ref: /schemas/types.yaml#/definitions/phandle-array - description: Phandle for the PHY device. - deprecated: true + maxItems: 1 ctrl-module: $ref: /schemas/types.yaml#/definitions/phandle @@ -96,6 +94,9 @@ required: - interrupts - interrupt-names +allOf: + - $ref: usb-hcd.yaml# + unevaluatedProperties: false examples: -- 2.53.0