mirror of
https://github.com/Evolution-X-Devices/device_google_walleye
synced 2026-02-01 07:33:36 +00:00
Bug: 31420007 Change-Id: I1a3687a339c0830e058ac3c8b4f4a4e51bac272b Signed-off-by: Thierry Strudel <tstrudel@google.com>
17 lines
413 B
C
17 lines
413 B
C
#ifndef _DSPS_H_
|
|
#define _DSPS_H_
|
|
|
|
#include <linux/ioctl.h>
|
|
|
|
#define DSPS_IOCTL_MAGIC 'd'
|
|
|
|
#define DSPS_IOCTL_ON _IO(DSPS_IOCTL_MAGIC, 1)
|
|
#define DSPS_IOCTL_OFF _IO(DSPS_IOCTL_MAGIC, 2)
|
|
|
|
#define DSPS_IOCTL_READ_SLOW_TIMER _IOR(DSPS_IOCTL_MAGIC, 3, unsigned int*)
|
|
#define DSPS_IOCTL_READ_FAST_TIMER _IOR(DSPS_IOCTL_MAGIC, 4, unsigned int*)
|
|
|
|
#define DSPS_IOCTL_RESET _IO(DSPS_IOCTL_MAGIC, 5)
|
|
|
|
#endif /* _DSPS_H_ */
|