DM: remove unused function console_init

Change-Id: I5c06a1dd057cea0edd364c846958074ee3df4987
Tracked-On: #3123
Signed-off-by: Ying Liu <ying2.liu@intel.com>
Acked-by: Anthony Xu <anthony.xu@intel.com>
This commit is contained in:
yliu79 2019-05-22 10:30:01 -07:00 committed by ACRN System Integration
parent e6360b9b7f
commit 43c01f8e26
2 changed files with 0 additions and 8 deletions

View File

@ -44,12 +44,6 @@ static struct {
int ptr_priority;
} console;
void
console_init(int w, int h, void *fbaddr)
{
console.gc = gc_init(w, h, fbaddr);
}
struct gfx_ctx_image *
console_get_image(void)
{

View File

@ -35,8 +35,6 @@ typedef void (*fb_render_func_t)(struct gfx_ctx *gc, void *arg);
typedef void (*kbd_event_func_t)(int down, uint32_t keysym, void *arg);
typedef void (*ptr_event_func_t)(uint8_t mask, int x, int y, void *arg);
void console_init(int w, int h, void *fbaddr);
struct gfx_ctx_image *console_get_image(void);
void console_fb_register(fb_render_func_t render_cb, void *arg);