summaryrefslogtreecommitdiff
path: root/board/honeybuns/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/honeybuns/board.c')
-rw-r--r--board/honeybuns/board.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/board/honeybuns/board.c b/board/honeybuns/board.c
new file mode 100644
index 0000000000..039b1c7246
--- /dev/null
+++ b/board/honeybuns/board.c
@@ -0,0 +1,23 @@
+/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/* Honeybuns board-specific configuration */
+
+#include "common.h"
+#include "gpio.h"
+#include "hooks.h"
+#include "switch.h"
+#include "system.h"
+#include "task.h"
+#include "uart.h"
+#include "util.h"
+
+#include "gpio_list.h" /* Must come after other header files. */
+
+static void board_init(void)
+{
+ /* TODO */
+}
+DECLARE_HOOK(HOOK_INIT, board_init, HOOK_PRIO_DEFAULT);