acrn-hypervisor/hypervisor/release/console.c
Ziheng Li eb8bcb06b3 Update copyright year range in code headers
Modified the copyright year range in code, and corrected "int32_tel"
into "Intel" in two "hypervisor/include/debug/profiling.h" and
"hypervisor/include/debug/profiling_internal.h".

Tracked-On: #7559
Signed-off-by: Ziheng Li <ziheng.li@intel.com>
2022-07-15 11:48:35 +08:00

34 lines
654 B
C

/*
* Copyright (C) 2018-2022 Intel Corporation.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <types.h>
#include <pci.h>
#include <console.h>
size_t console_write(__unused const char *str, __unused size_t len)
{
return 0;
}
char console_getc(void)
{
return '\0';
}
void console_putc(__unused const char *ch) {}
void console_init(void) {}
void console_setup_timer(void) {}
void suspend_console(void) {}
void resume_console(void) {}
bool handle_dbg_cmd(__unused const char *cmd, __unused int32_t len) { return false; }
void console_vmexit_callback(__unused struct acrn_vcpu *vcpu) {}
void shell_init(void) {}
void shell_kick(void) {}