media: qcom: camss: csiphy-3ph: Rename struct

The existing structure captures the configuration of CSIPHY lane registers.
Rename to struct csiphy_lane_regs to reflect.

Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Depeng Shao <quic_depengs@quicinc.com>
Reviewed-by: Elliot Berman <quic_eberman@quicinc.com>
Reviewed-by: Vladimir Zapolskiy <vladimir.zapolskiy@linaro.org>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
This commit is contained in:
Bryan O'Donoghue 2025-01-13 10:01:20 +05:30 committed by Hans Verkuil
parent 87c2c27165
commit eec18b9d9d

View File

@ -56,7 +56,7 @@
#define CSIPHY_2PH_REGS 5
#define CSIPHY_3PH_REGS 6
struct csiphy_reg_t {
struct csiphy_lane_regs {
s32 reg_addr;
s32 reg_data;
s32 delay;
@ -65,7 +65,7 @@ struct csiphy_reg_t {
/* GEN2 1.0 2PH */
static const struct
csiphy_reg_t lane_regs_sdm845[] = {
csiphy_lane_regs lane_regs_sdm845[] = {
{0x0004, 0x0C, 0x00, CSIPHY_DEFAULT_PARAMS},
{0x002C, 0x01, 0x00, CSIPHY_DEFAULT_PARAMS},
{0x0034, 0x0F, 0x00, CSIPHY_DEFAULT_PARAMS},
@ -140,7 +140,7 @@ csiphy_reg_t lane_regs_sdm845[] = {
/* GEN2 1.1 2PH */
static const struct
csiphy_reg_t lane_regs_sc8280xp[] = {
csiphy_lane_regs lane_regs_sc8280xp[] = {
{0x0004, 0x0C, 0x00, CSIPHY_DEFAULT_PARAMS},
{0x002C, 0x01, 0x00, CSIPHY_DEFAULT_PARAMS},
{0x0034, 0x0F, 0x00, CSIPHY_DEFAULT_PARAMS},
@ -215,7 +215,7 @@ csiphy_reg_t lane_regs_sc8280xp[] = {
/* GEN2 1.2.1 2PH */
static const struct
csiphy_reg_t lane_regs_sm8250[] = {
csiphy_lane_regs lane_regs_sm8250[] = {
{0x0030, 0x00, 0x00, CSIPHY_DEFAULT_PARAMS},
{0x0900, 0x05, 0x00, CSIPHY_DEFAULT_PARAMS},
{0x0908, 0x10, 0x00, CSIPHY_DEFAULT_PARAMS},
@ -470,7 +470,7 @@ static void csiphy_gen1_config_lanes(struct csiphy_device *csiphy,
static void csiphy_gen2_config_lanes(struct csiphy_device *csiphy,
u8 settle_cnt)
{
const struct csiphy_reg_t *r;
const struct csiphy_lane_regs *r;
int i, array_size;
u32 val;