brintos

brintos / linux-shallow public Read only

0
0
Text · 615 B · f94fca4 Raw
24 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * HID Sensors Driver4 * Copyright (c) 2012, Intel Corporation.5 */6#ifndef _HID_SENSOR_TRIGGER_H7#define _HID_SENSOR_TRIGGER_H8 9#include <linux/pm.h>10#include <linux/pm_runtime.h>11 12struct hid_sensor_common;13struct iio_dev;14 15extern const struct dev_pm_ops hid_sensor_pm_ops;16 17int hid_sensor_setup_trigger(struct iio_dev *indio_dev, const char *name,18				struct hid_sensor_common *attrb);19void hid_sensor_remove_trigger(struct iio_dev *indio_dev,20			       struct hid_sensor_common *attrb);21int hid_sensor_power_state(struct hid_sensor_common *st, bool state);22 23#endif24