summaryrefslogtreecommitdiff
path: root/board/cr50/board.c
blob: cc5774117c7271b2a80c026e49f4f1b25704e856 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Copyright (c) 2014 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.
 */

#include "common.h"
#include "gpio.h"
#include "hooks.h"
#include "task.h"
#include "util.h"

#include "gpio_list.h"

/* Initialize board. */
static void board_init(void)
{
	/* TODO(crosbug.com/p/33812): Try enabling this */
	/* gpio_enable_interrupt(GPIO_CAMO0_BREACH_INT); */
}
DECLARE_HOOK(HOOK_INIT, board_init, HOOK_PRIO_DEFAULT);