msm: camera: icp: Symbols Renamed to Accommodate for OFE

Rename symbols in ICP driver to accommodate for newly added
OFE driver. Symbols that specifically contain string "ipe_bps"
or "ipebps" are renamed to "dev" or "device" to make the symbol
generic and adaptable to any distinct HW names such as OFE.

CRs-fixed: 3266661
Change-Id: I141342e40d52cbb3c676389a13f1428435054913
Signed-off-by: Sokchetra Eung <quic_eung@quicinc.com>
This commit is contained in:
Sokchetra Eung
2022-07-28 12:12:09 -07:00
committed by Camera Software Integration
parent 1f4e9d51a6
commit 4e06429fc8
9 changed files with 121 additions and 119 deletions

View File

@@ -421,14 +421,14 @@ int hfi_cmd_ubwc_config_ext(uint32_t *ubwc_ipe_cfg,
}
int hfi_enable_ipe_bps_pc(bool enable, uint32_t core_info)
int hfi_enable_dev_pc(bool enable, uint32_t core_info)
{
uint8_t *prop;
struct hfi_cmd_prop *dbg_prop;
uint32_t size = 0;
size = sizeof(struct hfi_cmd_prop) +
sizeof(struct hfi_ipe_bps_pc);
sizeof(struct hfi_dev_pc);
prop = kzalloc(size, GFP_KERNEL);
if (!prop)