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 2E72E346FAE; Sat, 28 Feb 2026 17:33:01 +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=1772299982; cv=none; b=N8e4Wh1XJ4YLB9T2bRqJHHiLXUjtuz+QNYPzC4VyJxWmdeBIewK8Wh6/fVBG8QqhH3YgQm5tquCcnk9BhgPxXN3E20vfwbc240AQa4tzikOMwnZyS5Rt9izRjyJUKyvtXzpRZfbKqgC+S44GdVgQSMyGoqN43ctguXoa3k58phI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772299982; c=relaxed/simple; bh=SFnyf4F+oXbrayj46ArGg9lHqMGNk3XPYVJe7hBn9UU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=oBqMrukLQFsL5ADcqNkqcl3LQkFlpDHZlTJ+nASC//E8Q8Ge6pTeRliWzuWDAUpW044eRSTIXtKUC23iMbiTxHe/YUlxdw6nPtMtjdglpmeb1t/Jro2vfgXX1/Bgg6NCFxRu8SrknIfSP0itAftI2AmpBm+aVtaJztgLWPaWpUM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=RiEeW1P2; 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="RiEeW1P2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0EA24C19424; Sat, 28 Feb 2026 17:33:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1772299981; bh=SFnyf4F+oXbrayj46ArGg9lHqMGNk3XPYVJe7hBn9UU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=RiEeW1P2NzZ4qkd/mBv4XqFDeMbFVnief/z2Kstn5IhdiT2ZgiJ4j5XivX3FRZzGY WGu0QY8UNyMAYDQ8uOehxIeF8ACjJnHLDEr/4NEsemVNeGnEcMOJWfga5Ub6lLdyZe X1Xp/TUIaurZRoF53uPJJgAPEgniV24Y4HxbGU2DTickZnLN5fY23yVvzjff9sG0d/ LX5n3Pakw5p4qZTWWposr2wQ0gb8trNPCbVOzz8j27mqkOBwiIl8xr4Sxus0k9MwNi /AhSR2YILGPHoXCBGDy5S5hOpd2ib6F7d+tCwAsJ0V6vtP03jHQjgIcjxDvFVrJStn /TmJ801/Vyi9g== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Peter Robinson , Shubhi Garg , Jon Hunter , Alexandre Belloni , Sasha Levin Subject: [PATCH 6.19 010/844] rtc: nvvrs: Add ARCH_TEGRA to the NV VRS RTC driver Date: Sat, 28 Feb 2026 12:18:43 -0500 Message-ID: <20260228173244.1509663-11-sashal@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20260228173244.1509663-1-sashal@kernel.org> References: <20260228173244.1509663-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit From: Peter Robinson [ Upstream commit f9ecfd9bfedba9fd9d4b015b33b847571f7fdd42 ] The NV VRS RTC driver currently is only supported on the Tegra platform so add a dep for ARCH_TEGRA and compile test so it doesn't show up universally across all arches/platforms. Fixes: 9d6d6b06933c8 ("rtc: nvvrs: add NVIDIA VRS RTC device driver") Cc: Shubhi Garg Cc: Jon Hunter Signed-off-by: Peter Robinson Acked-by: Jon Hunter Link: https://patch.msgid.link/20251222035651.433603-1-pbrobinson@gmail.com Signed-off-by: Alexandre Belloni Signed-off-by: Sasha Levin --- drivers/rtc/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig index 50dc779f7f983..50ba48609d74e 100644 --- a/drivers/rtc/Kconfig +++ b/drivers/rtc/Kconfig @@ -418,6 +418,7 @@ config RTC_DRV_SPACEMIT_P1 config RTC_DRV_NVIDIA_VRS10 tristate "NVIDIA VRS10 RTC device" + depends on ARCH_TEGRA || COMPILE_TEST help If you say yes here you will get support for the battery backed RTC device of NVIDIA VRS (Voltage Regulator Specification). The RTC is connected via -- 2.51.0