hid-sensor-trigger.h 615 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * HID Sensors Driver
  4. * Copyright (c) 2012, Intel Corporation.
  5. */
  6. #ifndef _HID_SENSOR_TRIGGER_H
  7. #define _HID_SENSOR_TRIGGER_H
  8. #include <linux/pm.h>
  9. #include <linux/pm_runtime.h>
  10. struct hid_sensor_common;
  11. struct iio_dev;
  12. extern const struct dev_pm_ops hid_sensor_pm_ops;
  13. int hid_sensor_setup_trigger(struct iio_dev *indio_dev, const char *name,
  14. struct hid_sensor_common *attrb);
  15. void hid_sensor_remove_trigger(struct iio_dev *indio_dev,
  16. struct hid_sensor_common *attrb);
  17. int hid_sensor_power_state(struct hid_sensor_common *st, bool state);
  18. #endif