1 #ifndef _INPUT_COMPAT_H
2 #define _INPUT_COMPAT_H
5 * 32bit compatibility wrappers for the input subsystem.
7 * Very heavily based on evdev.c - Copyright (c) 1999-2002 Vojtech Pavlik
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published by
11 * the Free Software Foundation.
14 #include <linux/compiler.h>
15 #include <linux/compat.h>
16 #include <linux/input.h>
20 struct input_event_compat
{
28 struct ff_periodic_effect_compat
{
35 struct ff_envelope envelope
;
38 compat_uptr_t custom_data
;
41 struct ff_effect_compat
{
45 struct ff_trigger trigger
;
46 struct ff_replay replay
;
49 struct ff_constant_effect constant
;
50 struct ff_ramp_effect ramp
;
51 struct ff_periodic_effect_compat periodic
;
52 struct ff_condition_effect condition
[2]; /* One for each axis */
53 struct ff_rumble_effect rumble
;
57 static inline size_t input_event_size(void)
59 return (in_compat_syscall() && !COMPAT_USE_64BIT_TIME
) ?
60 sizeof(struct input_event_compat
) : sizeof(struct input_event
);
65 static inline size_t input_event_size(void)
67 return sizeof(struct input_event
);
70 #endif /* CONFIG_COMPAT */
72 int input_event_from_user(const char __user
*buffer
,
73 struct input_event
*event
);
75 int input_event_to_user(char __user
*buffer
,
76 const struct input_event
*event
);
78 int input_ff_effect_from_user(const char __user
*buffer
, size_t size
,
79 struct ff_effect
*effect
);
81 #endif /* _INPUT_COMPAT_H */