aboutsummaryrefslogtreecommitdiff
path: root/board/google/gru/gru.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/google/gru/gru.c')
-rw-r--r--board/google/gru/gru.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/board/google/gru/gru.c b/board/google/gru/gru.c
new file mode 100644
index 0000000..b116b1a
--- /dev/null
+++ b/board/google/gru/gru.c
@@ -0,0 +1,16 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright 2018 Google
+ */
+
+#include <common.h>
+
+int board_init(void)
+{
+ return 0;
+}
+
+/* provided to defeat compiler optimisation in board_init_f() */
+void gru_dummy_function(int i)
+{
+}