#ifndef _ASM_GENERIC_SIGINFO_H #define _ASM_GENERIC_SIGINFO_H #include #define __SI_MASK 0xffff0000u #define __SI_KILL (0 << 16) #define __SI_TIMER (1 << 16) #define __SI_POLL (2 << 16) #define __SI_FAULT (3 << 16) #define __SI_CHLD (4 << 16) #define __SI_RT (5 << 16) #define __SI_MESGQ (6 << 16) #define __SI_SYS (7 << 16) #define __SI_CODE(T,N) ((T) | ((N) & 0xffff)) struct siginfo; void do_schedule_next_timer(struct siginfo *info); extern int copy_siginfo_to_user(struct siginfo __user *to, const struct siginfo *from); #endif
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorentin Labbe <clabbe.montjoie@gmail.com>2016-12-16 14:43:39 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2016-12-18 15:55:47 -0800
commit65dadffddbe44a60f8be9e95f264949ba1e547e9 (patch)
treeb3cd0b923bd71d7bb8e90aa0693bb8f7372672c2
parentf26e8817b235d8764363bffcc9cbfc61867371f2 (diff)
Input: joydev - remove unused linux/miscdevice.h include
This patch remove the inclusion of linux/miscdevice.h for joydev since it does not use miscdevice. Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>