Browse Source

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.

CRs-Fixed: 2594541
Change-Id: Ibeec3fd4460f9040255fa77f60fd565aed824c1c
Signed-off-by: Abhilash Kumar <[email protected]>
Signed-off-by: Trishansh Bhardwaj <[email protected]>
Abhilash Kumar 5 years ago
parent
commit
4fddce3d69
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/cam_cdm/cam_cdm_core_common.h

+ 1 - 1
drivers/cam_cdm/cam_cdm_core_common.h

@@ -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)