summaryrefslogtreecommitdiff
path: root/drivers/media/i2c/ov5647.c
diff options
context:
space:
mode:
authorJacopo Mondi <jacopo@jmondi.org>2020-11-19 17:32:35 +0100
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2021-01-12 16:14:56 +0100
commite907bd662ebd6bf9d60b074c3b9f1facf8a12f8b (patch)
tree77e145e842b209e3edca4e7b163c9fd70188d97b /drivers/media/i2c/ov5647.c
parent14f70a3232aa0a5a613cd0b690c962e1562f2baa (diff)
media: ov5647: Rename SBGGR8 VGA mode
Before adding new modes, rename the only existing one to report the bit depth to distinguish it from future additions. While at it, briefly describe the mode. Signed-off-by: Jacopo Mondi <jacopo@jmondi.org> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/i2c/ov5647.c')
-rw-r--r--drivers/media/i2c/ov5647.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/drivers/media/i2c/ov5647.c b/drivers/media/i2c/ov5647.c
index e5a0e6b7e84e..0234aed43a10 100644
--- a/drivers/media/i2c/ov5647.c
+++ b/drivers/media/i2c/ov5647.c
@@ -115,7 +115,7 @@ static struct regval_list sensor_oe_enable_regs[] = {
{0x3002, 0xe4},
};
-static const struct regval_list ov5647_640x480[] = {
+static const struct regval_list ov5647_640x480_8bpp[] = {
{0x0100, 0x00},
{0x0103, 0x01},
{0x3034, 0x08},
@@ -205,7 +205,8 @@ static const struct regval_list ov5647_640x480[] = {
{0x0100, 0x01},
};
-static const struct ov5647_mode ov5647_8bit_modes[] = {
+static const struct ov5647_mode ov5647_8bpp_modes[] = {
+ /* 8-bit VGA mode: Uncentred crop 2x2 binned 1296x972 image. */
{
.format = {
.code = MEDIA_BUS_FMT_SBGGR8_1X8,
@@ -220,16 +221,16 @@ static const struct ov5647_mode ov5647_8bit_modes[] = {
.width = 1280,
.height = 960,
},
- .reg_list = ov5647_640x480,
- .num_regs = ARRAY_SIZE(ov5647_640x480)
+ .reg_list = ov5647_640x480_8bpp,
+ .num_regs = ARRAY_SIZE(ov5647_640x480_8bpp)
},
};
static const struct ov5647_format_list ov5647_formats[] = {
{
.mbus_code = MEDIA_BUS_FMT_SBGGR8_1X8,
- .modes = ov5647_8bit_modes,
- .num_modes = ARRAY_SIZE(ov5647_8bit_modes),
+ .modes = ov5647_8bpp_modes,
+ .num_modes = ARRAY_SIZE(ov5647_8bpp_modes),
},
};