DM: remove unused function console_set_fbaddr

Change-Id: Ia0d96880a53a7564492ec4d7943b3040e32dd6e0
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:25:04 -07:00 committed by ACRN System Integration
parent 4e7703161e
commit 475c51e53a
2 changed files with 0 additions and 8 deletions

View File

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

View File

@ -37,8 +37,6 @@ typedef void (*ptr_event_func_t)(uint8_t mask, int x, int y, void *arg);
void console_init(int w, int h, void *fbaddr); void console_init(int w, int h, void *fbaddr);
void console_set_fbaddr(void *fbaddr);
struct gfx_ctx_image *console_get_image(void); struct gfx_ctx_image *console_get_image(void);
void console_fb_register(fb_render_func_t render_cb, void *arg); void console_fb_register(fb_render_func_t render_cb, void *arg);