]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/input.h
ACPI: fix acpi_find_child_device() invocation in acpi_preset_companion()
[mirror_ubuntu-bionic-kernel.git] / include / linux / input.h
CommitLineData
1da177e4
LT
1/*
2 * Copyright (c) 1999-2002 Vojtech Pavlik
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 as published by
6 * the Free Software Foundation.
7 */
607ca46e
DH
8#ifndef _INPUT_H
9#define _INPUT_H
1da177e4 10
1da177e4
LT
11#include <linux/time.h>
12#include <linux/list.h>
607ca46e 13#include <uapi/linux/input.h>
40d007e7
HR
14/* Implementation details, userspace should not care about these */
15#define ABS_MT_FIRST ABS_MT_TOUCH_MAJOR
cab7faca 16#define ABS_MT_LAST ABS_MT_TOOL_Y
1da177e4
LT
17
18/*
19 * In-kernel definitions.
20 */
21
ddc5d341 22#include <linux/device.h>
1da177e4
LT
23#include <linux/fs.h>
24#include <linux/timer.h>
ddc5d341 25#include <linux/mod_devicetable.h>
1da177e4 26
4369c64c
HR
27/**
28 * struct input_value - input value representation
29 * @type: type of value (EV_KEY, EV_ABS, etc)
30 * @code: the value code
31 * @value: the value
32 */
33struct input_value {
34 __u16 type;
35 __u16 code;
36 __s32 value;
37};
38
8006479c
DT
39/**
40 * struct input_dev - represents an input device
41 * @name: name of the device
42 * @phys: physical path to the device in the system hierarchy
43 * @uniq: unique identification code for the device (if device has it)
44 * @id: id of the device (struct input_id)
531c25a3 45 * @flags: input device flags (SYNTHETIC, etc.)
85b77200 46 * @propbit: bitmap of device properties and quirks
8006479c
DT
47 * @evbit: bitmap of types of events supported by the device (EV_KEY,
48 * EV_REL, etc.)
49 * @keybit: bitmap of keys/buttons this device has
50 * @relbit: bitmap of relative axes for the device
51 * @absbit: bitmap of absolute axes for the device
52 * @mscbit: bitmap of miscellaneous events supported by the device
53 * @ledbit: bitmap of leds present on the device
54 * @sndbit: bitmap of sound effects supported by the device
55 * @ffbit: bitmap of force feedback effects supported by the device
56 * @swbit: bitmap of switches present on the device
63a6404d
HR
57 * @hint_events_per_packet: average number of events generated by the
58 * device in a packet (between EV_SYN/SYN_REPORT events). Used by
59 * event handlers to estimate size of the buffer needed to hold
60 * events.
8006479c
DT
61 * @keycodemax: size of keycode table
62 * @keycodesize: size of elements in keycode table
63 * @keycode: map of scancodes to keycodes for this device
8613e4c2 64 * @getkeycode: optional legacy method to retrieve current keymap.
8006479c 65 * @setkeycode: optional method to alter current keymap, used to implement
66d2a595
DT
66 * sparse keymaps. If not supplied default mechanism will be used.
67 * The method is being called while holding event_lock and thus must
68 * not sleep
8006479c
DT
69 * @ff: force feedback structure associated with the device if device
70 * supports force feedback effects
71 * @repeat_key: stores key code of the last key pressed; used to implement
72 * software autorepeat
73 * @timer: timer for software autorepeat
8006479c 74 * @rep: current values for autorepeat parameters (delay, rate)
8d18fba2 75 * @mt: pointer to multitouch state
86b17f76 76 * @absinfo: array of &struct input_absinfo elements holding information
d31b2865
DM
77 * about absolute axes (current value, min, max, flat, fuzz,
78 * resolution)
8006479c
DT
79 * @key: reflects current state of device's keys/buttons
80 * @led: reflects current state of device's LEDs
81 * @snd: reflects current state of sound effects
82 * @sw: reflects current state of device's switches
8006479c
DT
83 * @open: this method is called when the very first user calls
84 * input_open_device(). The driver must prepare the device
85 * to start generating events (start polling thread,
86 * request an IRQ, submit URB, etc.)
87 * @close: this method is called when the very last user calls
88 * input_close_device().
89 * @flush: purges the device. Most commonly used to get rid of force
90 * feedback effects loaded into the device when disconnecting
91 * from it
92 * @event: event handler for events sent _to_ the device, like EV_LED
93 * or EV_SND. The device is expected to carry out the requested
94 * action (turn on a LED, play sound, etc.) The call is protected
95 * by @event_lock and must not sleep
96 * @grab: input handle that currently has the device grabbed (via
97 * EVIOCGRAB ioctl). When a handle grabs a device it becomes sole
98 * recipient for all input events coming from the device
83510e5f 99 * @event_lock: this spinlock is taken when input core receives
8006479c
DT
100 * and processes a new event for the device (in input_event()).
101 * Code that accesses and/or modifies parameters of a device
102 * (such as keymap or absmin, absmax, absfuzz, etc.) after device
103 * has been registered with input core must take this lock.
104 * @mutex: serializes calls to open(), close() and flush() methods
105 * @users: stores number of users (input handlers) that opened this
106 * device. It is used by input_open_device() and input_close_device()
107 * to make sure that dev->open() is only called when the first
108 * user opens device and dev->close() is called when the very
109 * last user closes the device
110 * @going_away: marks devices that are in a middle of unregistering and
111 * causes input_open_device*() fail with -ENODEV.
112 * @dev: driver model's view of this device
113 * @h_list: list of input handles associated with the device. When
114 * accessing the list dev->mutex must be held
115 * @node: used to place the device onto input_dev_list
800963fd
HR
116 * @num_vals: number of values queued in the current frame
117 * @max_vals: maximum number of values queued in a frame
118 * @vals: array of values queued in the current frame
2be975c6
DT
119 * @devres_managed: indicates that devices is managed with devres framework
120 * and needs not be explicitly unregistered or freed.
8006479c 121 */
1da177e4 122struct input_dev {
5b6271bd
DT
123 const char *name;
124 const char *phys;
125 const char *uniq;
1da177e4
LT
126 struct input_id id;
127
531c25a3
KM
128 unsigned int flags;
129
85b77200
HR
130 unsigned long propbit[BITS_TO_LONGS(INPUT_PROP_CNT)];
131
7b19ada2
JS
132 unsigned long evbit[BITS_TO_LONGS(EV_CNT)];
133 unsigned long keybit[BITS_TO_LONGS(KEY_CNT)];
134 unsigned long relbit[BITS_TO_LONGS(REL_CNT)];
135 unsigned long absbit[BITS_TO_LONGS(ABS_CNT)];
136 unsigned long mscbit[BITS_TO_LONGS(MSC_CNT)];
137 unsigned long ledbit[BITS_TO_LONGS(LED_CNT)];
138 unsigned long sndbit[BITS_TO_LONGS(SND_CNT)];
139 unsigned long ffbit[BITS_TO_LONGS(FF_CNT)];
140 unsigned long swbit[BITS_TO_LONGS(SW_CNT)];
1da177e4 141
63a6404d
HR
142 unsigned int hint_events_per_packet;
143
1da177e4
LT
144 unsigned int keycodemax;
145 unsigned int keycodesize;
146 void *keycode;
8613e4c2 147
58b93995 148 int (*setkeycode)(struct input_dev *dev,
aebd636b
DT
149 const struct input_keymap_entry *ke,
150 unsigned int *old_keycode);
58b93995 151 int (*getkeycode)(struct input_dev *dev,
aebd636b 152 struct input_keymap_entry *ke);
1da177e4 153
509ca1a9
AH
154 struct ff_device *ff;
155
1da177e4
LT
156 unsigned int repeat_key;
157 struct timer_list timer;
158
d31b2865 159 int rep[REP_CNT];
1da177e4 160
8d18fba2 161 struct input_mt *mt;
40d007e7 162
d31b2865
DM
163 struct input_absinfo *absinfo;
164
7b19ada2
JS
165 unsigned long key[BITS_TO_LONGS(KEY_CNT)];
166 unsigned long led[BITS_TO_LONGS(LED_CNT)];
167 unsigned long snd[BITS_TO_LONGS(SND_CNT)];
168 unsigned long sw[BITS_TO_LONGS(SW_CNT)];
1da177e4 169
1da177e4
LT
170 int (*open)(struct input_dev *dev);
171 void (*close)(struct input_dev *dev);
1da177e4
LT
172 int (*flush)(struct input_dev *dev, struct file *file);
173 int (*event)(struct input_dev *dev, unsigned int type, unsigned int code, int value);
1da177e4 174
2be85279 175 struct input_handle __rcu *grab;
0fbf87ca 176
8006479c
DT
177 spinlock_t event_lock;
178 struct mutex mutex;
179
0fbf87ca 180 unsigned int users;
ffd0db97 181 bool going_away;
0fbf87ca 182
9657d75c 183 struct device dev;
1da177e4
LT
184
185 struct list_head h_list;
186 struct list_head node;
4369c64c
HR
187
188 unsigned int num_vals;
189 unsigned int max_vals;
190 struct input_value *vals;
2be975c6
DT
191
192 bool devres_managed;
1da177e4 193};
9657d75c 194#define to_input_dev(d) container_of(d, struct input_dev, dev)
1da177e4 195
531c25a3
KM
196#define INPUTDEV_FLAGS_SYNTHETIC 0x000000001
197
ddc5d341
DT
198/*
199 * Verify that we are in sync with input_device_id mod_devicetable.h #defines
200 */
201
202#if EV_MAX != INPUT_DEVICE_ID_EV_MAX
203#error "EV_MAX and INPUT_DEVICE_ID_EV_MAX do not match"
204#endif
205
dc24f0e7
SR
206#if KEY_MIN_INTERESTING != INPUT_DEVICE_ID_KEY_MIN_INTERESTING
207#error "KEY_MIN_INTERESTING and INPUT_DEVICE_ID_KEY_MIN_INTERESTING do not match"
208#endif
209
ddc5d341
DT
210#if KEY_MAX != INPUT_DEVICE_ID_KEY_MAX
211#error "KEY_MAX and INPUT_DEVICE_ID_KEY_MAX do not match"
212#endif
213
214#if REL_MAX != INPUT_DEVICE_ID_REL_MAX
215#error "REL_MAX and INPUT_DEVICE_ID_REL_MAX do not match"
216#endif
217
218#if ABS_MAX != INPUT_DEVICE_ID_ABS_MAX
219#error "ABS_MAX and INPUT_DEVICE_ID_ABS_MAX do not match"
220#endif
221
222#if MSC_MAX != INPUT_DEVICE_ID_MSC_MAX
223#error "MSC_MAX and INPUT_DEVICE_ID_MSC_MAX do not match"
224#endif
225
226#if LED_MAX != INPUT_DEVICE_ID_LED_MAX
227#error "LED_MAX and INPUT_DEVICE_ID_LED_MAX do not match"
228#endif
229
230#if SND_MAX != INPUT_DEVICE_ID_SND_MAX
231#error "SND_MAX and INPUT_DEVICE_ID_SND_MAX do not match"
232#endif
233
234#if FF_MAX != INPUT_DEVICE_ID_FF_MAX
235#error "FF_MAX and INPUT_DEVICE_ID_FF_MAX do not match"
236#endif
237
238#if SW_MAX != INPUT_DEVICE_ID_SW_MAX
239#error "SW_MAX and INPUT_DEVICE_ID_SW_MAX do not match"
240#endif
241
8724ecb0
DT
242#if INPUT_PROP_MAX != INPUT_DEVICE_ID_PROP_MAX
243#error "INPUT_PROP_MAX and INPUT_DEVICE_ID_PROP_MAX do not match"
244#endif
245
ddc5d341 246#define INPUT_DEVICE_ID_MATCH_DEVICE \
1da177e4 247 (INPUT_DEVICE_ID_MATCH_BUS | INPUT_DEVICE_ID_MATCH_VENDOR | INPUT_DEVICE_ID_MATCH_PRODUCT)
ddc5d341 248#define INPUT_DEVICE_ID_MATCH_DEVICE_AND_VERSION \
1da177e4
LT
249 (INPUT_DEVICE_ID_MATCH_DEVICE | INPUT_DEVICE_ID_MATCH_VERSION)
250
1da177e4
LT
251struct input_handle;
252
c7e8dc6e
DT
253/**
254 * struct input_handler - implements one of interfaces for input devices
255 * @private: driver-specific data
8006479c
DT
256 * @event: event handler. This method is being called by input core with
257 * interrupts disabled and dev->event_lock spinlock held and so
258 * it may not sleep
4369c64c
HR
259 * @events: event sequence handler. This method is being called by
260 * input core with interrupts disabled and dev->event_lock
261 * spinlock held and so it may not sleep
ef7995f4
DT
262 * @filter: similar to @event; separates normal event handlers from
263 * "filters".
0b7024ac
DT
264 * @match: called after comparing device's id with handler's id_table
265 * to perform fine-grained matching between device and handler
c7e8dc6e
DT
266 * @connect: called when attaching a handler to an input device
267 * @disconnect: disconnects a handler from input device
268 * @start: starts handler for given handle. This function is called by
269 * input core right after connect() method and also when a process
270 * that "grabbed" a device releases it
7f8d4cad
DT
271 * @legacy_minors: set to %true by drivers using legacy minor ranges
272 * @minor: beginning of range of 32 legacy minors for devices this driver
c7e8dc6e
DT
273 * can provide
274 * @name: name of the handler, to be shown in /proc/bus/input/handlers
275 * @id_table: pointer to a table of input_device_ids this driver can
276 * handle
c7e8dc6e
DT
277 * @h_list: list of input handles associated with the handler
278 * @node: for placing the driver onto input_handler_list
8006479c
DT
279 *
280 * Input handlers attach to input devices and create input handles. There
281 * are likely several handlers attached to any given input device at the
282 * same time. All of them will get their copy of input event generated by
283 * the device.
284 *
ef7995f4
DT
285 * The very same structure is used to implement input filters. Input core
286 * allows filters to run first and will not pass event to regular handlers
287 * if any of the filters indicate that the event should be filtered (by
288 * returning %true from their filter() method).
289 *
8006479c
DT
290 * Note that input core serializes calls to connect() and disconnect()
291 * methods.
c7e8dc6e 292 */
1da177e4
LT
293struct input_handler {
294
295 void *private;
296
297 void (*event)(struct input_handle *handle, unsigned int type, unsigned int code, int value);
4369c64c
HR
298 void (*events)(struct input_handle *handle,
299 const struct input_value *vals, unsigned int count);
ef7995f4 300 bool (*filter)(struct input_handle *handle, unsigned int type, unsigned int code, int value);
0b7024ac 301 bool (*match)(struct input_handler *handler, struct input_dev *dev);
5b2a0826 302 int (*connect)(struct input_handler *handler, struct input_dev *dev, const struct input_device_id *id);
1da177e4 303 void (*disconnect)(struct input_handle *handle);
c7e8dc6e 304 void (*start)(struct input_handle *handle);
1da177e4 305
7f8d4cad 306 bool legacy_minors;
1da177e4 307 int minor;
66e66118 308 const char *name;
1da177e4 309
66e66118 310 const struct input_device_id *id_table;
1da177e4
LT
311
312 struct list_head h_list;
313 struct list_head node;
314};
315
8006479c
DT
316/**
317 * struct input_handle - links input device with an input handler
318 * @private: handler-specific data
319 * @open: counter showing whether the handle is 'open', i.e. should deliver
320 * events from its device
321 * @name: name given to the handle by handler that created it
322 * @dev: input device the handle is attached to
323 * @handler: handler that works with the device through this handle
324 * @d_node: used to put the handle on device's list of attached handles
325 * @h_node: used to put the handle on handler's list of handles from which
326 * it gets events
327 */
1da177e4
LT
328struct input_handle {
329
330 void *private;
331
332 int open;
66e66118 333 const char *name;
1da177e4
LT
334
335 struct input_dev *dev;
336 struct input_handler *handler;
337
338 struct list_head d_node;
339 struct list_head h_node;
340};
341
2be975c6
DT
342struct input_dev __must_check *input_allocate_device(void);
343struct input_dev __must_check *devm_input_allocate_device(struct device *);
f60d2b11 344void input_free_device(struct input_dev *dev);
d19fbe8a 345
d19fbe8a
DT
346static inline struct input_dev *input_get_device(struct input_dev *dev)
347{
a7097ff8 348 return dev ? to_input_dev(get_device(&dev->dev)) : NULL;
d19fbe8a
DT
349}
350
351static inline void input_put_device(struct input_dev *dev)
352{
a7097ff8
DT
353 if (dev)
354 put_device(&dev->dev);
d19fbe8a
DT
355}
356
3abccf36
DT
357static inline void *input_get_drvdata(struct input_dev *dev)
358{
3797fec1 359 return dev_get_drvdata(&dev->dev);
3abccf36
DT
360}
361
362static inline void input_set_drvdata(struct input_dev *dev, void *data)
363{
3797fec1 364 dev_set_drvdata(&dev->dev, data);
3abccf36
DT
365}
366
501cc54c 367int __must_check input_register_device(struct input_dev *);
1da177e4
LT
368void input_unregister_device(struct input_dev *);
369
b50b5216
DT
370void input_reset_device(struct input_dev *);
371
501cc54c 372int __must_check input_register_handler(struct input_handler *);
1da177e4
LT
373void input_unregister_handler(struct input_handler *);
374
7f8d4cad
DT
375int __must_check input_get_new_minor(int legacy_base, unsigned int legacy_num,
376 bool allow_dynamic);
377void input_free_minor(unsigned int minor);
378
66d2a595
DT
379int input_handler_for_each_handle(struct input_handler *, void *data,
380 int (*fn)(struct input_handle *, void *));
381
5b2a0826
DT
382int input_register_handle(struct input_handle *);
383void input_unregister_handle(struct input_handle *);
384
1da177e4
LT
385int input_grab_device(struct input_handle *);
386void input_release_device(struct input_handle *);
387
388int input_open_device(struct input_handle *);
389void input_close_device(struct input_handle *);
390
b50b5216 391int input_flush_device(struct input_handle *handle, struct file *file);
1da177e4
LT
392
393void input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value);
0e739d28 394void input_inject_event(struct input_handle *handle, unsigned int type, unsigned int code, int value);
1da177e4
LT
395
396static inline void input_report_key(struct input_dev *dev, unsigned int code, int value)
397{
398 input_event(dev, EV_KEY, code, !!value);
399}
400
401static inline void input_report_rel(struct input_dev *dev, unsigned int code, int value)
402{
403 input_event(dev, EV_REL, code, value);
404}
405
406static inline void input_report_abs(struct input_dev *dev, unsigned int code, int value)
407{
408 input_event(dev, EV_ABS, code, value);
409}
410
1da177e4
LT
411static inline void input_report_ff_status(struct input_dev *dev, unsigned int code, int value)
412{
413 input_event(dev, EV_FF_STATUS, code, value);
414}
415
31581066
RP
416static inline void input_report_switch(struct input_dev *dev, unsigned int code, int value)
417{
418 input_event(dev, EV_SW, code, !!value);
419}
420
1da177e4
LT
421static inline void input_sync(struct input_dev *dev)
422{
423 input_event(dev, EV_SYN, SYN_REPORT, 0);
1da177e4
LT
424}
425
5e5ee686
HR
426static inline void input_mt_sync(struct input_dev *dev)
427{
428 input_event(dev, EV_SYN, SYN_MT_REPORT, 0);
429}
430
534565f2
DT
431void input_set_capability(struct input_dev *dev, unsigned int type, unsigned int code);
432
63a6404d
HR
433/**
434 * input_set_events_per_packet - tell handlers about the driver event rate
435 * @dev: the input device used by the driver
436 * @n_events: the average number of events between calls to input_sync()
437 *
438 * If the event rate sent from a device is unusually large, use this
439 * function to set the expected event rate. This will allow handlers
440 * to set up an appropriate buffer size for the event stream, in order
441 * to minimize information loss.
442 */
443static inline void input_set_events_per_packet(struct input_dev *dev, int n_events)
444{
445 dev->hint_events_per_packet = n_events;
446}
447
d31b2865
DM
448void input_alloc_absinfo(struct input_dev *dev);
449void input_set_abs_params(struct input_dev *dev, unsigned int axis,
450 int min, int max, int fuzz, int flat);
1da177e4 451
7957e9c4
DM
452#define INPUT_GENERATE_ABS_ACCESSORS(_suffix, _item) \
453static inline int input_abs_get_##_suffix(struct input_dev *dev, \
454 unsigned int axis) \
455{ \
d31b2865 456 return dev->absinfo ? dev->absinfo[axis]._item : 0; \
7957e9c4
DM
457} \
458 \
459static inline void input_abs_set_##_suffix(struct input_dev *dev, \
460 unsigned int axis, int val) \
461{ \
d31b2865
DM
462 input_alloc_absinfo(dev); \
463 if (dev->absinfo) \
464 dev->absinfo[axis]._item = val; \
7957e9c4
DM
465}
466
d31b2865
DM
467INPUT_GENERATE_ABS_ACCESSORS(val, value)
468INPUT_GENERATE_ABS_ACCESSORS(min, minimum)
469INPUT_GENERATE_ABS_ACCESSORS(max, maximum)
7957e9c4
DM
470INPUT_GENERATE_ABS_ACCESSORS(fuzz, fuzz)
471INPUT_GENERATE_ABS_ACCESSORS(flat, flat)
d31b2865 472INPUT_GENERATE_ABS_ACCESSORS(res, resolution)
7957e9c4 473
8613e4c2
MCC
474int input_scancode_to_scalar(const struct input_keymap_entry *ke,
475 unsigned int *scancode);
476
477int input_get_keycode(struct input_dev *dev, struct input_keymap_entry *ke);
58b93995 478int input_set_keycode(struct input_dev *dev,
8613e4c2 479 const struct input_keymap_entry *ke);
f4f37c8e 480
55dfce87
DT
481bool input_match_device_id(const struct input_dev *dev,
482 const struct input_device_id *id);
483
027c71bb
PG
484void input_enable_softrepeat(struct input_dev *dev, int delay, int period);
485
ea9f240b 486extern struct class input_class;
1da177e4 487
509ca1a9
AH
488/**
489 * struct ff_device - force-feedback part of an input device
490 * @upload: Called to upload an new effect into device
491 * @erase: Called to erase an effect from device
492 * @playback: Called to request device to start playing specified effect
493 * @set_gain: Called to set specified gain
494 * @set_autocenter: Called to auto-center device
495 * @destroy: called by input core when parent input device is being
496 * destroyed
497 * @private: driver-specific data, will be freed automatically
498 * @ffbit: bitmap of force feedback capabilities truly supported by
499 * device (not emulated like ones in input_dev->ffbit)
500 * @mutex: mutex for serializing access to the device
501 * @max_effects: maximum number of effects supported by device
502 * @effects: pointer to an array of effects currently loaded into device
503 * @effect_owners: array of effect owners; when file handle owning
8006479c 504 * an effect gets closed the effect is automatically erased
509ca1a9
AH
505 *
506 * Every force-feedback device must implement upload() and playback()
507 * methods; erase() is optional. set_gain() and set_autocenter() need
508 * only be implemented if driver sets up FF_GAIN and FF_AUTOCENTER
509 * bits.
bf3204cb
DT
510 *
511 * Note that playback(), set_gain() and set_autocenter() are called with
512 * dev->event_lock spinlock held and interrupts off and thus may not
513 * sleep.
509ca1a9
AH
514 */
515struct ff_device {
516 int (*upload)(struct input_dev *dev, struct ff_effect *effect,
517 struct ff_effect *old);
518 int (*erase)(struct input_dev *dev, int effect_id);
519
520 int (*playback)(struct input_dev *dev, int effect_id, int value);
521 void (*set_gain)(struct input_dev *dev, u16 gain);
522 void (*set_autocenter)(struct input_dev *dev, u16 magnitude);
523
524 void (*destroy)(struct ff_device *);
525
526 void *private;
527
7b19ada2 528 unsigned long ffbit[BITS_TO_LONGS(FF_CNT)];
509ca1a9
AH
529
530 struct mutex mutex;
531
532 int max_effects;
533 struct ff_effect *effects;
534 struct file *effect_owners[];
535};
536
05be8b81 537int input_ff_create(struct input_dev *dev, unsigned int max_effects);
509ca1a9
AH
538void input_ff_destroy(struct input_dev *dev);
539
540int input_ff_event(struct input_dev *dev, unsigned int type, unsigned int code, int value);
541
542int input_ff_upload(struct input_dev *dev, struct ff_effect *effect, struct file *file);
543int input_ff_erase(struct input_dev *dev, int effect_id, struct file *file);
e8b95728 544int input_ff_flush(struct input_dev *dev, struct file *file);
509ca1a9 545
7d928a2b
AH
546int input_ff_create_memless(struct input_dev *dev, void *data,
547 int (*play_effect)(struct input_dev *, void *, struct ff_effect *));
548
1da177e4 549#endif