On Mon Jan 13 10:01:20 2025 +0530, Bryan O'Donoghue wrote:
> 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.odonog...@linaro.org>
> Signed-off-by: Depeng Shao <quic_depe...@quicinc.com>
> Reviewed-by: Elliot Berman <quic_eber...@quicinc.com>
> Reviewed-by: Vladimir Zapolskiy <vladimir.zapols...@linaro.org>
> Signed-off-by: Hans Verkuil <hverk...@xs4all.nl>

Patch committed.

Thanks,
Hans Verkuil

 drivers/media/platform/qcom/camss/camss-csiphy-3ph-1-0.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

---

diff --git a/drivers/media/platform/qcom/camss/camss-csiphy-3ph-1-0.c 
b/drivers/media/platform/qcom/camss/camss-csiphy-3ph-1-0.c
index f7b851242aa5..73e4c05a9dec 100644
--- a/drivers/media/platform/qcom/camss/camss-csiphy-3ph-1-0.c
+++ b/drivers/media/platform/qcom/camss/camss-csiphy-3ph-1-0.c
@@ -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;
 

Reply via email to