summaryrefslogtreecommitdiff
path: root/drivers/hte
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2022-12-15 19:46:19 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-05-11 17:03:38 +0300
commita51e150ef99890e73194a7b8faaf1a26fbee3782 (patch)
tree0f391ad9dd06f466d3c90bca5a24328a0da0509e /drivers/hte
parent5790f76dd2047a504f8b2bb6d6efb3cd6bc0ab0c (diff)
downloadlinux-a51e150ef99890e73194a7b8faaf1a26fbee3782.tar.xz
hte: tegra: fix 'struct of_device_id' build error
[ Upstream commit 6680c835ada1b34e882d0a32612f7294c62e27e0 ] Without the extra #include, this driver produces a build failure in some configurations. drivers/hte/hte-tegra194-test.c:96:34: error: array type has incomplete element type 'struct of_device_id' 96 | static const struct of_device_id tegra_hte_test_of_match[] = { Fixes: 9a75a7cd03c9 ("hte: Add Tegra HTE test driver") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Dipen Patel <dipenp@nvidia.com> Signed-off-by: Dipen Patel <dipenp@nvidia.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/hte')
-rw-r--r--drivers/hte/hte-tegra194-test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hte/hte-tegra194-test.c b/drivers/hte/hte-tegra194-test.c
index 5d776a185bd6..ce8c44e79221 100644
--- a/drivers/hte/hte-tegra194-test.c
+++ b/drivers/hte/hte-tegra194-test.c
@@ -6,6 +6,7 @@
*/
#include <linux/err.h>
+#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/interrupt.h>