summaryrefslogtreecommitdiff
path: root/chip/host/gpio.c
blob: 03cfaa4aedccf58cca3091938f33be3afc3a90b7 (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
/* Copyright (c) 2013 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 for emulator */

#include "common.h"
#include "gpio.h"

test_mockable void gpio_pre_init(void)
{
	/* Nothing */
}

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

test_mockable void gpio_set_level(enum gpio_signal signal, int value)
{
	/* Nothing */
}