Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 783e5704 authored by Alok Chauhan's avatar Alok Chauhan
Browse files

msm: msm_bus: Correct the IOCTL command data type



User space send command in explicit type format but
IOCTL module rely on native command type format.

Correct the command type format in IOCTL module to
use explicit type.

Change-Id: I366689b39e11718e41ee021272bf625e1f735897
Signed-off-by: default avatarAlok Chauhan <alokc@codeaurora.org>
parent 66e9dfa9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ enum msm_buspm_ioc_cmds {
	_IOW(MSM_BUSPM_IOC_MAGIC, 3, struct buspm_xfer_req)

#define MSM_BUSPM_IOC_RD_PHYS_ADDR	\
	_IOR(MSM_BUSPM_IOC_MAGIC, 4, unsigned long)
	_IOR(MSM_BUSPM_IOC_MAGIC, 4, uint32_t)

#define MSM_BUSPM_IOC_CMD	\
	_IOR(MSM_BUSPM_IOC_MAGIC, 5, uint32_t)