summaryrefslogtreecommitdiff
path: root/hw/kdrive/fbdev/fbinit.c
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2007-12-14 00:03:13 -0200
committerDaniel Stone <daniel@fooishbar.org>2007-12-14 13:15:27 +0200
commit863ba390e9fdf0d37cdf03bf5eebe7fdfe6288f5 (patch)
tree03182ce810ee03598dc0273e9e2505072d7a5b29 /hw/kdrive/fbdev/fbinit.c
parentca59d3f7bdb5f3724ff45ea57912c0b1098a73d6 (diff)
kdrive/fbdev: use operating system input devices
Diffstat (limited to 'hw/kdrive/fbdev/fbinit.c')
-rw-r--r--hw/kdrive/fbdev/fbinit.c12
1 files changed, 1 insertions, 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 ();
}