diff options
author | Daniel Stone <daniel@fooishbar.org> | 2006-07-21 15:23:37 -0400 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2006-07-21 15:23:37 -0400 |
commit | 60ea7b51fe2b8a19a08b63db48504971a7a50ee6 (patch) | |
tree | 2fa67d1b032ece292b835373489c5794bb3dd196 /hw/xfree86/common/xf86MiscExt.c | |
parent | d32dc8bf19e1071fc30af2f0bc6a6699b351f39e (diff) |
xorg ddx: move to new input API, remove old keyboard driver
Remove most of the rest of the old keyboard driver.
Move to the new Get{Keyboard,Pointer}Events API, which is mostly
complete at this stage: just missing the proximity events.
Diffstat (limited to 'hw/xfree86/common/xf86MiscExt.c')
-rw-r--r-- | hw/xfree86/common/xf86MiscExt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/common/xf86MiscExt.c b/hw/xfree86/common/xf86MiscExt.c index bdb02cef0..3e741bae9 100644 --- a/hw/xfree86/common/xf86MiscExt.c +++ b/hw/xfree86/common/xf86MiscExt.c @@ -366,7 +366,7 @@ MiscExtCreateStruct(MiscExtStructType mse_or_kbd) InputInfoPtr pInfo = xf86InputDevs; while (pInfo) { - if (xf86IsCorePointer(pInfo->dev)) + if (pInfo->dev == inputInfo.pointer) break; pInfo = pInfo->next; } |