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 {
21 struct compat_timeval time;
27 struct ff_periodic_effect_compat {
34 struct ff_envelope envelope;
37 compat_uptr_t custom_data;
40 struct ff_effect_compat {
44 struct ff_trigger trigger;
45 struct ff_replay replay;
48 struct ff_constant_effect constant;
49 struct ff_ramp_effect ramp;
50 struct ff_periodic_effect_compat periodic;
51 struct ff_condition_effect condition[2]; /* One for each axis */
52 struct ff_rumble_effect rumble;
56 static inline size_t input_event_size(void)
58 return (in_compat_syscall() && !COMPAT_USE_64BIT_TIME) ?
59 sizeof(struct input_event_compat) : sizeof(struct input_event);
64 static inline size_t input_event_size(void)
66 return sizeof(struct input_event);
69 #endif /* CONFIG_COMPAT */
71 int input_event_from_user(const char __user *buffer,
72 struct input_event *event);
74 int input_event_to_user(char __user *buffer,
75 const struct input_event *event);
77 int input_ff_effect_from_user(const char __user *buffer, size_t size,
78 struct ff_effect *effect);
80 #endif /* _INPUT_COMPAT_H */