summaryrefslogtreecommitdiff
path: root/chip/host/lpc.c
blob: 78619c5b75bf873cfae2a0a5653ee00ae8812e41 (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
/* Copyright 2013 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* LPC module for Chrome EC emulator */

#include "lpc.h"

test_mockable int lpc_keyboard_has_char(void)
{
	return 0;
}

test_mockable int lpc_keyboard_input_pending(void)
{
	return 0;
}

test_mockable void lpc_keyboard_put_char(uint8_t chr, int send_irq)
{
	/* Do nothing */
}

test_mockable void lpc_keyboard_clear_buffer(void)
{
	/* Do nothing */
}

test_mockable void lpc_keyboard_resume_irq(void)
{
	/* Do nothing */
}