thinkpad-acpi: handle HKEY 0x4010, 0x4011 events
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / iio / trigger_consumer.h
blob9d52d9637777dac9aad662bae6f73b39c2cf09d2
2 /* The industrial I/O core, trigger consumer handling functions
4 * Copyright (c) 2008 Jonathan Cameron
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 */
11 #ifdef CONFIG_IIO_TRIGGER
12 /**
13 * iio_device_register_trigger_consumer() - set up an iio_dev to use triggers
14 * @dev_info: iio_dev associated with the device that will consume the trigger
15 **/
16 int iio_device_register_trigger_consumer(struct iio_dev *dev_info);
18 /**
19 * iio_device_unregister_trigger_consumer() - reverse the registration process
20 * @dev_info: iio_dev associated with the device that consumed the trigger
21 **/
22 int iio_device_unregister_trigger_consumer(struct iio_dev *dev_info);
24 #else
26 /**
27 * iio_device_register_trigger_consumer() - set up an iio_dev to use triggers
28 * @dev_info: iio_dev associated with the device that will consume the trigger
29 **/
30 static int iio_device_register_trigger_consumer(struct iio_dev *dev_info)
32 return 0;
35 /**
36 * iio_device_unregister_trigger_consumer() - reverse the registration process
37 * @dev_info: iio_dev associated with the device that consumed the trigger
38 **/
39 static int iio_device_unregister_trigger_consumer(struct iio_dev *dev_info)
41 return 0;
44 #endif /* CONFIG_TRIGGER_CONSUMER */