summaryrefslogtreecommitdiff
path: root/chip/mt_scp/rv32i_common/gpio.c
blob: d56cff97fb632224e1ec1ad0f1453904450398f9 (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 ChromiumOS Authors
 * 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)
{
}