From patchwork Wed Oct 2 07:35:11 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 832697 Received: from michel.telenet-ops.be (michel.telenet-ops.be [195.130.137.88]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C6D6A13D51B for ; Wed, 2 Oct 2024 07:35:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.137.88 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727854519; cv=none; b=ZIrUw05jyaB9PSC6aGUNeHwJfWSiRWv99E6cW5dxGGA31kZCLLQm92ZPydusERO6YnH58IpEieEioBcWBh//oyNBXIDFeozprbZYkor1eNB4u6Fe5+wMBAvmthSctGiKGnoajJ0m97w61mxwD+bd8ZTs1Hz+sjOZTSMC3vTl3wg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727854519; c=relaxed/simple; bh=T1TASvHPB5TBEZP95zPqinwhLF589z9m+uCKirPEb78=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=ljm2QZjklZ3BP+0qS4XmqnFqMfJ4K24edgre/qo/rZl1w86ltabsceEdEvYV62G1N46DRDYSC0AplezsiSvYFlb+xfEBXlAqAHsyZrLjhW810iHuqoKYINVIpOs85FFBzHJaaqtbFTNEK7fp40ThvfQ3jc/T5mSb+LFPcM74TWs= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.137.88 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed80:80d:3d68:c8fe:1932]) by michel.telenet-ops.be with cmsmtp id KKbF2D00Q4Qoffy06KbFwM; Wed, 02 Oct 2024 09:35:16 +0200 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1svtt5-0016ye-7g; Wed, 02 Oct 2024 09:35:15 +0200 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1svttD-003taz-EI; Wed, 02 Oct 2024 09:35:15 +0200 From: Geert Uytterhoeven To: Greg Kroah-Hartman , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Magnus Damm , Yoshihiro Shimoda Cc: linux-usb@vger.kernel.org, devicetree@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH 0/2] usb: renesas_usbhs: Deprecate renesas,enable-gpio Date: Wed, 2 Oct 2024 09:35:11 +0200 Message-Id: X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-usb@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Hi all, The "gpio" suffix for GPIO consumers was deprecated a while ago, in favor of the "gpios" suffix. However, there are still several users of the "renesas,enable-gpio" property, in DT bindings and DT source files. Hence this series deprecates the old property in the DT bindings, and converts all users in DTS files to the new property. No driver changes are needed, as devm_gpiod_get_optional() as called from usbhs_probe() tries all suffixes. The first patch is targeted for the DT or USB tree. The second patch is targeted for the Renesas DTS tree. Thanks for your comments! Geert Uytterhoeven (2): dt-bindings: usb: renesas,usbhs: Deprecate renesas,enable-gpio ARM: dts: renesas: rcar-gen2: Switch HS-USB to renesas,enable-gpios Documentation/devicetree/bindings/usb/renesas,usbhs.yaml | 4 ++++ arch/arm/boot/dts/renesas/r8a7790-lager.dts | 2 +- arch/arm/boot/dts/renesas/r8a7791-koelsch.dts | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-)