You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
378 B
17 lines
378 B
#ifndef __UAPI_CAM_HYP_ITF_H__
|
|
#define __UAPI_CAM_HYP_ITF_H__
|
|
|
|
struct cam_hyp_intf_hyp_handle_type {
|
|
uint32_t fd;
|
|
uint32_t handle;
|
|
};
|
|
|
|
#define MSM_CAM_HYP_INTF_IOCTL_MAGIC '^'
|
|
|
|
#define MSM_CAM_HYP_INTF_IOCTL_GET_HYP_HANDLE\
|
|
_IOWR(MSM_CAM_HYP_INTF_IOCTL_MAGIC, 0,\
|
|
struct cam_hyp_intf_hyp_handle_type)
|
|
|
|
#define MSM_CAM_HYP_INTF_IOCTL_MAX 0
|
|
|
|
#endif /*__UAPI_CAM_HYP_ITF_H__*/
|
|
|