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

Commit 66a75b70 authored by Abhilash Kumar's avatar Abhilash Kumar
Browse files

msm: camera: cdm: Correct bitvalue for burst enable



The bit corrresponding to enabling burst is 4th bit.
This change fixes its value by assigning the same.

Change-Id: Ibeec3fd4460f9040255fa77f60fd565aed824c1c
Signed-off-by: default avatarAbhilash Kumar <krabhi@codeaurora.org>
parent cae1cb38
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
#define CAM_CDM_AHB_BURST_LEN_4  (BIT(2) - 1)
#define CAM_CDM_AHB_BURST_LEN_8  (BIT(3) - 1)
#define CAM_CDM_AHB_BURST_LEN_16 (BIT(4) - 1)
#define CAM_CDM_AHB_BURST_EN      BIT(5)
#define CAM_CDM_AHB_BURST_EN      BIT(4)
#define CAM_CDM_AHB_STOP_ON_ERROR BIT(8)
#define CAM_CDM_ARB_SEL_RR        BIT(16)
#define CAM_CDM_IMPLICIT_WAIT_EN  BIT(17)