Skip to content

Commit

Permalink
camera: fix new version
Browse files Browse the repository at this point in the history
Opensource base V11.0.0.1 , but not anyone update
More people get V11.0.5.0 stable,and Dev version

Signed-off-by: PainKiller3 <[email protected]>
  • Loading branch information
Qiwu Huang authored and PainKiller3 committed Jan 23, 2020
1 parent a9ed3b4 commit 876080c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
#define ICP_DEV_TYPE_TO_CLK_TYPE(dev_type) \
((dev_type == CAM_ICP_RES_TYPE_BPS) ? ICP_CLK_HW_BPS : ICP_CLK_HW_IPE)

#define ICP_DEVICE_IDLE_TIMEOUT 400
#define ICP_DEVICE_IDLE_TIMEOUT 3000

static struct cam_icp_hw_mgr icp_hw_mgr;

Expand Down Expand Up @@ -534,7 +534,7 @@ static int cam_icp_ctx_timer_start(struct cam_icp_hw_ctx_data *ctx_data)
int rc = 0;

rc = crm_timer_init(&ctx_data->watch_dog,
200, ctx_data, &cam_icp_ctx_timer_cb);
ICP_DEVICE_IDLE_TIMEOUT, ctx_data, &cam_icp_ctx_timer_cb);
if (rc)
CAM_ERR(CAM_ICP, "Failed to start timer");

Expand Down
2 changes: 1 addition & 1 deletion include/uapi/media/cam_req_mgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* Max handles supported by cam_req_mgr
* It includes both session and device handles
*/
#define CAM_REQ_MGR_MAX_HANDLES 64
#define CAM_REQ_MGR_MAX_HANDLES 128
#define CAM_REQ_MGR_MAX_HANDLES_V2 128
#define MAX_LINKS_PER_SESSION 2

Expand Down

0 comments on commit 876080c

Please sign in to comment.