diff options
author | Keith Packard <keithp@keithp.com> | 2010-05-26 07:54:35 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-05-26 07:54:35 -0700 |
commit | 4e9d3e413245e7c01c2ff3c0f130b8967754131b (patch) | |
tree | 401fc96d44a7ff27923207ee59a90b36df55959f /hw/kdrive | |
parent | 531ff40301975519af7b20109c17d296312d3f2b (diff) |
Revert "Add a "flags" field to DeleteInputDeviceRequest."
Peter wants to get a larger patch sequence put together and I didn't
read past the commit message to see the 'don't take this patch
please'.
This reverts commit 531ff40301975519af7b20109c17d296312d3f2b.
Diffstat (limited to 'hw/kdrive')
-rw-r--r-- | hw/kdrive/linux/evdev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/kdrive/linux/evdev.c b/hw/kdrive/linux/evdev.c index cb16176c7..3797f0926 100644 --- a/hw/kdrive/linux/evdev.c +++ b/hw/kdrive/linux/evdev.c @@ -165,7 +165,7 @@ EvdevPtrRead (int evdevPort, void *closure) n = read (evdevPort, &events, NUM_EVENTS * sizeof (struct input_event)); if (n <= 0) { if (errno == ENODEV) - DeleteInputDeviceRequest(pi->dixdev, 0); + DeleteInputDeviceRequest(pi->dixdev); return; } @@ -375,7 +375,7 @@ EvdevKbdRead (int evdevPort, void *closure) n = read (evdevPort, &events, NUM_EVENTS * sizeof (struct input_event)); if (n <= 0) { if (errno == ENODEV) - DeleteInputDeviceRequest(ki->dixdev, 0); + DeleteInputDeviceRequest(ki->dixdev); return; } |