summaryrefslogtreecommitdiff
path: root/include/soc
diff options
context:
space:
mode:
authorDong Aisheng <aisheng.dong@nxp.com>2019-04-19 16:51:04 +0800
committerDong Aisheng <aisheng.dong@nxp.com>2019-11-25 16:31:33 +0800
commitb199c5a4709cd5681c7b740829c77780730e6898 (patch)
treedb84124f6916de955190533be72e144368b4b67a /include/soc
parente12ffa41c1dcc70bc0e8815e03440ec727daeeb8 (diff)
soc: imx: fix build error of missing imx_src_is_m4_enabled
drivers/clk/imx/clk-gate2.o: In function `clk_gate2_do_shared_clks': /home/b29396/Work/linux/dash-linux-devel/build_v8/../drivers/clk/imx/clk-gate2.c:61: undefined reference to `imx_src_is_m4_enabled' drivers/clk/imx/clk-pfd.o: In function `clk_pfd_do_shared_clks': /home/b29396/Work/linux/dash-linux-devel/build_v8/../drivers/clk/imx/clk-pfd.c:55: undefined reference to `imx_src_is_m4_enabled' /home/b29396/Work/linux/dash-linux-devel/build_v8/../drivers/clk/imx/clk-pfd.c:55: undefined reference to `imx_src_is_m4_enabled' drivers/clk/imx/clk-pllv3.o: In function `clk_pllv3_do_shared_clks': /home/b29396/Work/linux/dash-linux-devel/build_v8/../drivers/clk/imx/clk-pllv3.c:109: undefined reference to `imx_src_is_m4_enabled' /home/b29396/Work/linux/dash-linux-devel/Makefile:1047: recipe for target 'vmlinux' failed make[1]: *** [vmlinux] Error 1 make[1]: Leaving directory '/home/b29396/Work/linux/dash-linux-devel/build_v8' Makefile:179: recipe for target 'sub-make' failed make: *** [sub-make] Error 2 Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
Diffstat (limited to 'include/soc')
-rw-r--r--include/soc/imx/soc.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/soc/imx/soc.h b/include/soc/imx/soc.h
new file mode 100644
index 000000000000..78e05523154a
--- /dev/null
+++ b/include/soc/imx/soc.h
@@ -0,0 +1,20 @@
+/*
+ * Copyright 2017 NXP
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef __SOC_IMX8_SOC_H__
+#define __SOC_IMX8_SOC_H__
+
+int check_m4_enabled(void);
+
+#endif