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 6C99414BFA2; Sun, 7 Sep 2025 20:16:43 +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=1757276203; cv=none; b=Rlx9AswqhIr9DPOJEGe6hLCPOsQ0NxhAtxOKD77iUBgnNbS6DUuXViVP7n1d5Fv/s89QMHCufqtJXYZQiL83OVRAUS+gECA49aB715H0BEgMU+P0Yatj7LjKnBru0uyweR660Dj7e60HeEkgyK5SG+De3H6lsTG8nPxxdwALXKM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757276203; c=relaxed/simple; bh=sMgh4piQsMndhT1540J6qcLvt3z+ZJ1Kg4c+xAeMvbY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=G2zofI8qj9gfi3oTUXkw8ZOdXMTFjXkxVbQAlnlxYOZizesmRCIxnF/SSw8Je9h2OKBsZB2hL/Lq4rWW9M+0nLhHbF7L2Um6d5QcYYGSwZ8h1O5r3X64GBcSqZ0SObSn/25JVQoJwbHmKOt8NpZARdVQeLtTXOZmR0jPeLI3Imc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=W9L3ysgS; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="W9L3ysgS" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E6DC8C4CEF0; Sun, 7 Sep 2025 20:16:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1757276203; bh=sMgh4piQsMndhT1540J6qcLvt3z+ZJ1Kg4c+xAeMvbY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=W9L3ysgS1Ynpoqg8KOso2WgQsOdBARp9B5V+bqp/bulMgC59nOUagkQxPIbc9bUat AZZUB5RfbjMy9MNBTRZgrSW/DJpERJo+5/YsldnnMSTr6AIIVS0WY1wJ8s38o0Jeik Nl3OHQ3XueOhVnn2VasRVPZpu+8CQEXvwab+6YRc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Peter Robinson , Dragan Simic , Heiko Stuebner , Sasha Levin Subject: [PATCH 6.1 013/104] arm64: dts: rockchip: Add vcc-supply to SPI flash on rk3399-pinebook-pro Date: Sun, 7 Sep 2025 21:57:30 +0200 Message-ID: <20250907195608.020867689@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250907195607.664912704@linuxfoundation.org> References: <20250907195607.664912704@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Peter Robinson [ Upstream commit d1f9c497618dece06a00e0b2995ed6b38fafe6b5 ] As described in the pinebookpro_v2.1_mainboard_schematic.pdf page 10, he SPI Flash's VCC connector is connected to VCC_3V0 power source. This fixes the following warning: spi-nor spi1.0: supply vcc not found, using dummy regulator Fixes: 5a65505a69884 ("arm64: dts: rockchip: Add initial support for Pinebook Pro") Signed-off-by: Peter Robinson Reviewed-by: Dragan Simic Link: https://lore.kernel.org/r/20250730102129.224468-1-pbrobinson@gmail.com Signed-off-by: Heiko Stuebner Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts b/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts index 3d7b82e921f6e..fa3e1aaae9742 100644 --- a/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts +++ b/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts @@ -977,6 +977,7 @@ spiflash: flash@0 { reg = <0>; m25p,fast-read; spi-max-frequency = <10000000>; + vcc-supply = <&vcc_3v0>; }; }; -- 2.50.1