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

Commit 356027c1 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: camera: Add uapi header for camera cpas" into msm-4.9

parents 83840e9c 038f79f3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
header-y += cam_cpas.h
header-y += cam_defs.h
header-y += cam_isp.h
header-y += cam_isp_vfe.h
+23 −0
Original line number Diff line number Diff line
#ifndef __UAPI_CAM_CPAS_H__
#define __UAPI_CAM_CPAS_H__

#include "cam_defs.h"

#define CAM_FAMILY_CAMERA_SS     1
#define CAM_FAMILY_CPAS_SS       2

/**
 * struct cam_cpas_query_cap - CPAS query device capability payload
 *
 * @camera_family     : Camera family type
 * @reserved          : Reserved field for alignment
 * @camera_version    : Camera version
 *
 */
struct cam_cpas_query_cap {
	uint32_t                 camera_family;
	uint32_t                 reserved;
	struct cam_hw_version    camera_version;
};

#endif /* __UAPI_CAM_CPAS_H__ */