aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/security.h (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2005-06-01Input: mousedev - do not wake up readers when receiving 0-motionDmitry Torokhov1-2/+6
event. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
2005-06-01Input: do not corrupt system-wide procfs fops.Luke Kosewski1-0/+4
entry->proc_fops is a pointer to struct file_operations. When we call create_proc_entry(...), it pointis to proc_file_operations, deep in fs/proc/generic.c. By adding a 'poll' member to this struct we effectively force the 'poll' member on every file in /proc, which is wrong (they all fail select(...) calls). This patch changes a copy of entry->proc_fops and reassigns it rather than changing the original member. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
2005-06-01Input: return correct value when setting up absolute device via uinipt.Ian Campbell1-2/+4
uinput_alloc_device() is supposed to return the number of bytes read, the value is returned to uinput_write() and from there to userspace. If EV_ABS is set then it returns the value from uinput_validate_absbits() instead, which is zero when everything is ok instead of the count. Signed-off-by: Ian Campbell <icampbell@arcom.com> Acked-by: Aristeu Rozanski <aris@cathedrallabs.org> Signed-off-by: Vojtech Pavlik <vojtech@suse.cz> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
2005-06-01Input: ALPS - fix forward/back buttons on Ahtec laptop.Ivan Casado Ruiz1-8/+21
I have an Ahtec laptop with a ALPS GlidePoint device, with 4 buttons. With Linux hernel 2.6.12rc4 and rc5 I'm unable to use the vertical scroll buttons (BACK and FORWARD). BACK gets detected as BTN_MIDDLE and FORWARD is undetected. I've modified the drivers/input/mouse/alps.c from 2.6.12rc5 and now it works fine! Signed-off-by: Vojtech Pavlik <vojtech@suse.cz> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
2005-06-01Input: kill empty comment in gameport support section ofAdrian Bunk1-5/+0
cs4281 ALSA driver. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Vojtech Pavlik <vojtech@suse.cz> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
2005-06-01Input: ES1371 (OSS) - do not carry around gameport code if gameportDmitry Torokhov1-32/+63
core support is disabled. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
2005-06-01Input: ES1370 (OSS) - do not carry around gameport code if gameportDmitry Torokhov1-30/+58
core support is disabled. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
2005-06-01Input: make sure that joystick support in CMPCI driver can only beDmitry Torokhov1-1/+1
selected if either gameport is built-in or _both_ gameport and cmpci are built as modules. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
2005-06-01Input: mad16 (OSS) - do not carry around gameport code if gameport coreDmitry Torokhov1-7/+23
support is disabled. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
2005-06-01Input: sonicvibes (OSS) - do not carry around gameport code if gameportDmitry Torokhov1-5/+20
core support is disabled. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
2005-06-01Input: trident (OSS) - do not carry around gameport code if gameportDmitry Torokhov1-12/+25
core support is disabled, some formatting changes. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
2005-06-01Input: ESS Solo (OSS) - do not carry around gameport code if gameportDmitry Torokhov1-5/+21
core support is disabled. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
2005-06-01Input: switch gameport core to using kthread API instead ofDmitry Torokhov1-19/+12
using daemonize() and signals. This way kgameportd will never be accidentially killed. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
2005-06-01Input: switch serio core to using kthread API instead of usingDmitry Torokhov1-17/+10
daemonize() and signals. This way kseriod will never be accidentially killed. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>