From 863ba390e9fdf0d37cdf03bf5eebe7fdfe6288f5 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Fri, 14 Dec 2007 00:03:13 -0200 Subject: [PATCH] kdrive/fbdev: use operating system input devices --- hw/kdrive/fbdev/fbinit.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/hw/kdrive/fbdev/fbinit.c b/hw/kdrive/fbdev/fbinit.c index 5e1c88b2c..de80c79aa 100644 --- a/hw/kdrive/fbdev/fbinit.c +++ b/hw/kdrive/fbdev/fbinit.c @@ -42,17 +42,7 @@ InitOutput (ScreenInfo *pScreenInfo, int argc, char **argv) void InitInput (int argc, char **argv) { - KdKeyboardInfo *ki; - - KdAddKeyboardDriver (&LinuxKeyboardDriver); - KdAddPointerDriver (&LinuxMouseDriver); -#ifdef TSLIB - KdAddPointerDriver (&TsDriver); -#endif - - ki = KdParseKeyboard ("keybd"); - KdAddKeyboard(ki); - + KdOsAddInputDrivers (); KdInitInput (); }