diff options
author | Dipen Patel <dipenp@nvidia.com> | 2023-04-14 03:44:55 +0300 |
---|---|---|
committer | Dipen Patel <dipenp@nvidia.com> | 2023-04-27 01:43:49 +0300 |
commit | 7d507452048d9a6971998339243d16a09c95a842 (patch) | |
tree | de2dd099b1dbc869b533082c98ac690a46842a1d | |
parent | d02b1cabc7c6fe0e237bf8a2a6a8813302cfd87c (diff) | |
download | linux-7d507452048d9a6971998339243d16a09c95a842.tar.xz |
gpio: tegra186: Add Tegra234 hte support
To enable timestamp support for the Tegra234, has_gte variable needs
to be set true.
Signed-off-by: Dipen Patel <dipenp@nvidia.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Acked-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/gpio/gpio-tegra186.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-tegra186.c b/drivers/gpio/gpio-tegra186.c index 14c872b6ad05..b904de0b1784 100644 --- a/drivers/gpio/gpio-tegra186.c +++ b/drivers/gpio/gpio-tegra186.c @@ -1134,6 +1134,7 @@ static const struct tegra_gpio_soc tegra234_aon_soc = { .name = "tegra234-gpio-aon", .instance = 1, .num_irqs_per_bank = 8, + .has_gte = true, }; #define TEGRA241_MAIN_GPIO_PORT(_name, _bank, _port, _pins) \ |