Android will not compile without include/uapi/linux/msm_dsps.h. Add this file from kernel/msm-4.4. CRs-Fixed: 2016909 Change-Id: I1948ce65704d59b4f6ccff2825f83eee0c19d841 Signed-off-by: Bruce Levy <blevy@codeaurora.org>
17 lines
428 B
C
17 lines
428 B
C
#ifndef _UAPI_DSPS_H_
|
|
#define _UAPI_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 /* _UAPI_DSPS_H_ */
|