
Fix uapi headers to work with KERNEL_HEADER_TEST and UAPI_HEADER_TEST. Use __uX instead of uintX_t. Use __sX instead of intX_t. Use _Bool instead of bool. Change-Id: I8c12efb728081716e49aea294f65ddfbae437267 Signed-off-by: Vignesh Kulothungan <vigneshk@codeaurora.org>
12 lines
188 B
C
12 lines
188 B
C
#ifndef _UAPI_AVTIMER_H
|
|
#define _UAPI_AVTIMER_H
|
|
|
|
#include <linux/ioctl.h>
|
|
#include <linux/types.h>
|
|
|
|
#define MAJOR_NUM 100
|
|
|
|
#define IOCTL_GET_AVTIMER_TICK _IOR(MAJOR_NUM, 0, __u64)
|
|
|
|
#endif
|