From 99cb6415ba27d3afdae7175f0f1334d382706c5f Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Sun, 9 Nov 2025 18:36:22 -0600 Subject: [PATCH] drivers/intel/mipi_camera: Rename flash enum to match SSDB field Retitle the SSDB flash-support enum to `flash_support`, aligning its name with the field in the struct and the spec. Also keep the existing values and clarify the default case comment. Change-Id: I49d825cb44d7f8784350e29e8b2b5a0772549f56 Signed-off-by: Matt DeVillier Reviewed-on: https://review.coreboot.org/c/coreboot/+/90185 Reviewed-by: Sean Rhodes Tested-by: build bot (Jenkins) --- src/drivers/intel/mipi_camera/ssdb.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/drivers/intel/mipi_camera/ssdb.h b/src/drivers/intel/mipi_camera/ssdb.h index f7c7280623..3cb4f120e5 100644 --- a/src/drivers/intel/mipi_camera/ssdb.h +++ b/src/drivers/intel/mipi_camera/ssdb.h @@ -37,8 +37,9 @@ enum platform_type { PLAT_NVL, }; -enum intel_camera_flash_type { - FLASH_DEFAULT = 0, + +enum flash_support { + FLASH_DEFAULT = 0, /* default is driver defined */ FLASH_DISABLE = 2, FLASH_ENABLE = 3 };