From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 1AF353C870E; Wed, 20 May 2026 17:35:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779298556; cv=none; b=tHmdmucUPUt2b/Z0onN92t0q2cVZI9DO1vVcawp7EkFGqBx9xs+tyEVUpsQlogU4V2HkZ+E/EtVdDFXKXSdnAgDF9lPYwL1br3ANFiQ1ltgH2Wqnr4RKAPnyHUt/MQ8PyidgT0vI0QIfKuFHDk/M9KX8ge/H6/+6VyHw4hz0fOI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779298556; c=relaxed/simple; bh=Q0etmJpfj3iKhfJXh77TxHiAmrG8QHL3Ob+k/koD0+U=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=eQ5khol+Pctt7C43e1kRFGj89+B2i3UmAIaF9GpIUfxAOgn3fEaN2T3xd4OWz0hLzOrjA7C2grunG6yYJNOyoE5j4QyGdw7Sv+gNA80HJkPTOobGwoF4WlnAtqUh6DQJpocRFPFuve0whZV4Qn8OIo1ZO54Qi0nGtmtVh/lK2Js= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Bmx8/nWl; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="Bmx8/nWl" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 20CDF1F00893; Wed, 20 May 2026 17:35:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779298551; bh=j+U8A/kyOQ9op2/1JRc3OCpFKnN7s/0GS4kMVYr5Xek=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Bmx8/nWl0ZfslObb2bcCsxgpZEb79kO2OnT2+HXtdW3kFR/FkndH0rPj0rbEHsj0m AClaRbRLBtUeXVMvVE8970cJvmqNLPpG4btzQRwECiBFH1Ryg7vV8kNT221O/Oo3dU JsDZ9jO/WAI/LiUHcNYhJXnyHAQ71z3kMGQQtA4M= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Francesco Lavra , Dipen Patel , Sasha Levin Subject: [PATCH 6.18 455/957] hte: tegra194: remove Kconfig dependency on Tegra194 SoC Date: Wed, 20 May 2026 18:15:38 +0200 Message-ID: <20260520162144.390685974@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260520162134.554764788@linuxfoundation.org> References: <20260520162134.554764788@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Francesco Lavra [ Upstream commit 92dfd92f747698352b256cd9ddd7497bb7ebe9c8 ] This driver runs also on other Tegra SoCs (e.g. Tegra234). Replace Kconfig dependency on Tegra194 with more generic dependency on Tegra, and amend the Kconfig help text to reflect the fact that this driver works on SoCs other than Tegra194. Fixes: b003fb5c9df8 ("hte: Add Tegra234 provider") Signed-off-by: Francesco Lavra Acked-by: Dipen Patel Signed-off-by: Dipen Patel Signed-off-by: Sasha Levin --- drivers/hte/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/hte/Kconfig b/drivers/hte/Kconfig index 641af722b555d..f57bad67deef0 100644 --- a/drivers/hte/Kconfig +++ b/drivers/hte/Kconfig @@ -16,13 +16,13 @@ if HTE config HTE_TEGRA194 tristate "NVIDIA Tegra194 HTE Support" - depends on (ARCH_TEGRA_194_SOC || COMPILE_TEST) + depends on (ARCH_TEGRA || COMPILE_TEST) depends on GPIOLIB help Enable this option for integrated hardware timestamping engine also known as generic timestamping engine (GTE) support on NVIDIA Tegra194 - systems-on-chip. The driver supports 352 LIC IRQs and 39 AON GPIOs - lines for timestamping in realtime. + and later systems-on-chip. The driver supports 352 LIC IRQs and 39 + AON GPIOs lines for timestamping in realtime. config HTE_TEGRA194_TEST tristate "NVIDIA Tegra194 HTE Test" -- 2.53.0