media: ti-vpe: cal: Rename cal_csi2_phy base_fields to fields
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Mon, 6 Jul 2020 18:35:38 +0000 (20:35 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Sun, 19 Jul 2020 06:35:37 +0000 (08:35 +0200)
The cal_csi2_phy structure has lost its 'fields' field that used to
clash with the 'base_fields' field. Rename base_fields to fields.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: Benoit Parrot <bparrot@ti.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/ti-vpe/cal.c

index 3df9770..72d5a64 100644 (file)
@@ -239,7 +239,7 @@ struct cal_csi2_phy {
        struct {
                unsigned int lsb;
                unsigned int msb;
-       } base_fields[F_MAX_FIELDS];
+       } fields[F_MAX_FIELDS];
        const int num_lanes;
 };
 
@@ -252,7 +252,7 @@ struct cal_data {
 
 static struct cal_csi2_phy dra72x_cal_csi_phy[] = {
        {
-               .base_fields = {
+               .fields = {
                        [F_CTRLCLKEN] = { 10, 10 },
                        [F_CAMMODE] = { 11, 12 },
                        [F_LANEENABLE] = { 13, 16 },
@@ -261,7 +261,7 @@ static struct cal_csi2_phy dra72x_cal_csi_phy[] = {
                .num_lanes = 4,
        },
        {
-               .base_fields = {
+               .fields = {
                        [F_CTRLCLKEN] = { 0, 0 },
                        [F_CAMMODE] = { 1, 2 },
                        [F_LANEENABLE] = { 3, 4 },
@@ -284,7 +284,7 @@ static const struct cal_data dra72x_es1_cal_data = {
 
 static struct cal_csi2_phy dra76x_cal_csi_phy[] = {
        {
-               .base_fields = {
+               .fields = {
                        [F_CTRLCLKEN] = { 8, 8 },
                        [F_CAMMODE] = { 9, 10 },
                        [F_CSI_MODE] = { 11, 11 },
@@ -293,7 +293,7 @@ static struct cal_csi2_phy dra76x_cal_csi_phy[] = {
                .num_lanes = 5,
        },
        {
-               .base_fields = {
+               .fields = {
                        [F_CTRLCLKEN] = { 0, 0 },
                        [F_CAMMODE] = { 1, 2 },
                        [F_CSI_MODE] = { 3, 3 },
@@ -310,7 +310,7 @@ static const struct cal_data dra76x_cal_data = {
 
 static struct cal_csi2_phy am654_cal_csi_phy[] = {
        {
-               .base_fields = {
+               .fields = {
                        [F_CTRLCLKEN] = { 15, 15 },
                        [F_CAMMODE] = { 24, 25 },
                        [F_LANEENABLE] = { 0, 4 },
@@ -493,8 +493,8 @@ static int cal_camerarx_regmap_init(struct cal_dev *dev, struct cc_data *cc,
        for (i = 0; i < F_MAX_FIELDS; i++) {
                struct reg_field field = {
                        .reg = dev->syscon_camerrx_offset,
-                       .lsb = phy->base_fields[i].lsb,
-                       .msb = phy->base_fields[i].msb,
+                       .lsb = phy->fields[i].lsb,
+                       .msb = phy->fields[i].msb,
                };
 
                /*