driver/intel/mipi_camera: Increase max power ops count to 6

Current max count for camera power ops is 5 which is not sufficient.
If we increase the ops by 1 in current variants the compiler
will not throw error for intel mipi camera driver.

Hence increase current max count for camera power ops to 6 from 5.

BUG=b:214665783
TEST=Build and boot to OS

Signed-off-by: Varshit B Pandya <varshit.b.pandya@intel.com>
Change-Id: I4f4c090f2275616816dfc697f27520cd1cbc1a80
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61146
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Varshit B Pandya 2022-01-17 18:22:56 +05:30 committed by Felix Held
parent 73b90c6872
commit 5f72179d57
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
#define MAX_LINK_FREQ_ENTRIES 4 #define MAX_LINK_FREQ_ENTRIES 4
#define MAX_CLK_CONFIGS 2 #define MAX_CLK_CONFIGS 2
#define MAX_GPIO_CONFIGS 4 #define MAX_GPIO_CONFIGS 4
#define MAX_PWR_OPS 5 #define MAX_PWR_OPS 6
#define MAX_GUARDED_RESOURCES 10 #define MAX_GUARDED_RESOURCES 10
#define IMGCLKOUT_0 0 #define IMGCLKOUT_0 0
#define IMGCLKOUT_1 1 #define IMGCLKOUT_1 1