summaryrefslogtreecommitdiff
path: root/board/samsung/axy17lte/axy17lte.c
diff options
context:
space:
mode:
authorDzmitry Sankouski <dsankouski@gmail.com>2021-10-17 13:45:42 +0300
committerTom Rini <trini@konsulko.com>2021-10-31 11:25:39 -0400
commit3e2095e960b47a3c0211a3a1e52c74b1761cb0be (patch)
tree2ab5f207ca3c191e5c1e67f66459d3b4a6f3fb0a /board/samsung/axy17lte/axy17lte.c
parent69bde0410a9ce5749a4cab5ed134527c2cb8b9e4 (diff)
board: samsung: add support for Galaxy A series of 2017 (a5y17lte)
Samsung Galaxy A3, A5, A7 (2017) - middle class Samsung smartphones. U-boot can be used as chain-loaded bootloader to gain control on booting vanilla linux(and possibly others) kernels Signed-off-by: Dzmitry Sankouski <dsankouski@gmail.com> Cc: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board/samsung/axy17lte/axy17lte.c')
-rw-r--r--board/samsung/axy17lte/axy17lte.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/board/samsung/axy17lte/axy17lte.c b/board/samsung/axy17lte/axy17lte.c
new file mode 100644
index 0000000000..c38297a05b
--- /dev/null
+++ b/board/samsung/axy17lte/axy17lte.c
@@ -0,0 +1,11 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Samsung A5Y17 and A3Y17 LTE boards based on Exynos 7880 and Exynos 7870 SoCs
+ */
+
+#include <common.h>
+
+int exynos_init(void)
+{
+ return 0;
+}