From 74d84d7b122802230579a4da8c2e6914d2f5f060 Mon Sep 17 00:00:00 2001 From: Kevin E Martin Date: Fri, 20 Aug 2004 05:22:39 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20keyboard=20driver=20failing=20to=20initia?= =?UTF-8?q?lize=20if=20DoLoadableServer=20is=20NO=20(Bug=20=20=20=20=20#11?= =?UTF-8?q?33,=20Kristian=20H=F8gsberg).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hw/xfree86/common/xf86Init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c index b929c5100..f507753fe 100644 --- a/hw/xfree86/common/xf86Init.c +++ b/hw/xfree86/common/xf86Init.c @@ -144,7 +144,7 @@ static int numFormats = 6; #endif static Bool formatsDone = FALSE; -InputDriverRec xf86KEYBOARD = { +InputDriverRec XF86KEYBOARD = { 1, "keyboard", NULL, @@ -425,7 +425,7 @@ InitOutput(ScreenInfo *pScreenInfo, int argc, char **argv) #ifdef USE_DEPRECATED_KEYBOARD_DRIVER /* Setup the builtin input drivers */ - xf86AddInputDriver(&xf86KEYBOARD, NULL, 0); + xf86AddInputDriver(&XF86KEYBOARD, NULL, 0); #endif /* Load all input driver modules specified in the config file. */ if ((modulelist = xf86InputDriverlistFromConfig())) {