[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230911094604.14179-1-brgl@bgdev.pl>
Date: Mon, 11 Sep 2023 11:46:04 +0200
From: Bartosz Golaszewski <brgl@...ev.pl>
To: Dipen Patel <dipenp@...dia.com>
Cc: timestamp@...ts.linux.dev, linux-kernel@...r.kernel.org,
Bartosz Golaszewski <bartosz.golaszewski@...aro.org>,
Linus Walleij <linus.walleij@...aro.org>
Subject: [PATCH] hte: allow building modules with COMPILE_TEST enabled
From: Bartosz Golaszewski <bartosz.golaszewski@...aro.org>
Allow building all HTE modules with COMPILE_TEST Kconfig option enabled.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@...aro.org>
Acked-by: Linus Walleij <linus.walleij@...aro.org>
---
This was part of a wider series but since this is independent, I'm sending
it separately.
drivers/hte/Kconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/hte/Kconfig b/drivers/hte/Kconfig
index cf29e0218bae..083e67492bf2 100644
--- a/drivers/hte/Kconfig
+++ b/drivers/hte/Kconfig
@@ -16,7 +16,7 @@ if HTE
config HTE_TEGRA194
tristate "NVIDIA Tegra194 HTE Support"
- depends on ARCH_TEGRA_194_SOC
+ depends on (ARCH_TEGRA_194_SOC || COMPILE_TEST)
help
Enable this option for integrated hardware timestamping engine also
known as generic timestamping engine (GTE) support on NVIDIA Tegra194
@@ -25,7 +25,7 @@ config HTE_TEGRA194
config HTE_TEGRA194_TEST
tristate "NVIDIA Tegra194 HTE Test"
- depends on HTE_TEGRA194
+ depends on (HTE_TEGRA194 || COMPILE_TEST)
help
The NVIDIA Tegra194 GTE test driver demonstrates how to use HTE
framework to timestamp GPIO and LIC IRQ lines.
--
2.39.2
Powered by blists - more mailing lists