/* The industrial I/O core, trigger consumer handling functions * * Copyright (c) 2008 Jonathan Cameron * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. */ #ifdef CONFIG_IIO_TRIGGER /** * iio_device_register_trigger_consumer() - set up an iio_dev to use triggers * @indio_dev: iio_dev associated with the device that will consume the trigger **/ void iio_device_register_trigger_consumer(struct iio_dev *indio_dev); /** * iio_device_unregister_trigger_consumer() - reverse the registration process * @indio_dev: iio_dev associated with the device that consumed the trigger **/ void iio_device_unregister_trigger_consumer(struct iio_dev *indio_dev); #else /** * iio_device_register_trigger_consumer() - set up an iio_dev to use triggers * @indio_dev: iio_dev associated with the device that will consume the trigger **/
static int iio_device_register_trigger_consumer(struct iio_dev *indio_dev) { return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jonathan Cameron | 13 | 92.86% | 2 | 66.67% |
Mark Brown | 1 | 7.14% | 1 | 33.33% |
Total | 14 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jonathan Cameron | 9 | 90.00% | 3 | 75.00% |
Mark Brown | 1 | 10.00% | 1 | 25.00% |
Total | 10 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Jonathan Cameron | 53 | 96.36% | 5 | 83.33% |
Mark Brown | 2 | 3.64% | 1 | 16.67% |
Total | 55 | 100.00% | 6 | 100.00% |