[PATCH v4 03/14] soc/tegra: Add stub for soc_is_tegra()

From: Dmitry Osipenko
Date: Thu May 27 2021 - 17:45:19 EST


Add stub required for compile-testing of drivers.

Signed-off-by: Dmitry Osipenko <digetx@xxxxxxxxx>
---
include/soc/tegra/common.h | 9 +++++++++
1 file changed, 9 insertions(+)

diff --git a/include/soc/tegra/common.h b/include/soc/tegra/common.h
index 98027a76ce3d..744280ecab5f 100644
--- a/include/soc/tegra/common.h
+++ b/include/soc/tegra/common.h
@@ -6,6 +6,15 @@
#ifndef __SOC_TEGRA_COMMON_H__
#define __SOC_TEGRA_COMMON_H__

+#include <linux/types.h>
+
+#ifdef CONFIG_ARCH_TEGRA
bool soc_is_tegra(void);
+#else
+static inline bool soc_is_tegra(void)
+{
+ return false;
+}
+#endif

#endif /* __SOC_TEGRA_COMMON_H__ */
--
2.30.2