summaryrefslogtreecommitdiff
path: root/board/brya/board.c
blob: a065b6e2410e4f6b8ceb7fe3ddb8efc48a8cf563 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* 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.
 */

#include "common.h"

#include "power.h"
#include "switch.h"

#include "gpio_list.h" /* Must come after other header files. */

/*
 * remove when we enable CONFIG_POWER_BUTTON
 */

void power_button_interrupt(enum gpio_signal signal)
{
}

/*
 * remove when we enable CONFIG_THROTTLE_AP
 */

void throttle_ap_prochot_input_interrupt(enum gpio_signal signal)
{
}

/*
 * remove when we enable CONFIG_EXTPOWER_GPIO
 */

void extpower_interrupt(enum gpio_signal signal)
{
}

/*
 * remove when we enable CONFIG_VOLUME_BUTTONS
 */

void button_interrupt(enum gpio_signal signal)
{
}