coreboot-libre-fam15h-rdimm/3rdparty/chromeec/chip/host/lpc.c

34 lines
597 B
C
Raw Normal View History

2024-03-04 11:14:53 +01:00
/* 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 */
}