DM: remove unused function console_ptr_event

Change-Id: If8dc5ba21d172a6794d86b048d61d9ccfc28cab4
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:37:18 -07:00 committed by ACRN System Integration
parent 12f55d1389
commit 683e2416b1
2 changed files with 0 additions and 8 deletions

View File

@ -89,10 +89,3 @@ console_ptr_unregister()
console.ptr_arg = NULL;
console.ptr_priority = 0;
}
void
console_ptr_event(uint8_t button, int x, int y)
{
if (console.ptr_event_cb)
(*console.ptr_event_cb)(button, x, y, console.ptr_arg);
}

View File

@ -42,6 +42,5 @@ void console_kbd_unregister(void);
void console_ptr_register(ptr_event_func_t event_cb, void *arg, int pri);
void console_ptr_unregister(void);
void console_ptr_event(uint8_t button, int x, int y);
#endif /* _CONSOLE_H_ */