summaryrefslogtreecommitdiff
path: root/chip/mt_scp/rv32i_common/gpio.c
blob: 0ca3e3ac2529562c9e3ae7370fec3735f9d036c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 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.
 */

/* GPIO module */

#include "gpio.h"

void gpio_pre_init(void)
{
}

test_mockable int gpio_get_level(enum gpio_signal signal)
{
	return 0;
}

void gpio_set_level(enum gpio_signal signal, int value)
{
}