blob: dd64be9275278ad23c21640b61597d70105de2b2 (
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 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.
*/
/* 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 */
}
|