diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2017-03-30 15:31:28 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-03-30 15:31:28 -0700 |
| commit | a9a7492ba10b3dd0271e46d3fadbbc4d55023282 (patch) | |
| tree | 4126569be12f1ce3ffb03806c6adb6d1ff8ee784 /include/uapi/linux | |
| parent | 2959ac0a18eb55b299146ce1cd3f98e6ce05d489 (diff) | |
| parent | 2e139766cacb8e7deb048d36798e144916e23931 (diff) | |
Merge "esoc: Fix user space corruption due to wrong data type"
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/esoc_ctrl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/uapi/linux/esoc_ctrl.h b/include/uapi/linux/esoc_ctrl.h index 1e70483e7352..57266ed29fb3 100644 --- a/include/uapi/linux/esoc_ctrl.h +++ b/include/uapi/linux/esoc_ctrl.h @@ -3,11 +3,11 @@ #define ESOC_CODE 0xCC -#define ESOC_CMD_EXE _IOW(ESOC_CODE, 1, u32) -#define ESOC_WAIT_FOR_REQ _IOR(ESOC_CODE, 2, u32) -#define ESOC_NOTIFY _IOW(ESOC_CODE, 3, u32) -#define ESOC_GET_STATUS _IOR(ESOC_CODE, 4, u32) -#define ESOC_WAIT_FOR_CRASH _IOR(ESOC_CODE, 6, u32) +#define ESOC_CMD_EXE _IOW(ESOC_CODE, 1, unsigned int) +#define ESOC_WAIT_FOR_REQ _IOR(ESOC_CODE, 2, unsigned int) +#define ESOC_NOTIFY _IOW(ESOC_CODE, 3, unsigned int) +#define ESOC_GET_STATUS _IOR(ESOC_CODE, 4, unsigned int) +#define ESOC_WAIT_FOR_CRASH _IOR(ESOC_CODE, 6, unsigned int) #define ESOC_REG_REQ_ENG _IO(ESOC_CODE, 7) #define ESOC_REG_CMD_ENG _IO(ESOC_CODE, 8) |
