media: ov5640: Move test_pattern_menu before ov5640_set_ctrl_test_pattern
authorChen-Yu Tsai <wens@csie.org>
Fri, 18 Jan 2019 08:52:01 +0000 (03:52 -0500)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Mon, 18 Feb 2019 16:27:18 +0000 (11:27 -0500)
The OV5640 has many options for generating test patterns. Unfortunately
there is only one V4L2 control for it. Thus the driver would need to
list some or all combinations.

Move the test_pattern_menu list before the ov5640_set_ctrl_test_pattern
function that programs the hardware. This would allow us to add a
matching list of values to program into the hardware, while keeping the
two lists together for ease of maintenance.

Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/i2c/ov5640.c

index 5a909abd0a2da2703ed9353f1b3b5781b6a32e94..8e4e8fa3685f21f8fa53e775cd04ac8dbd35d2aa 100644 (file)
@@ -2441,6 +2441,11 @@ static int ov5640_set_ctrl_gain(struct ov5640_dev *sensor, bool auto_gain)
        return ret;
 }
 
+static const char * const test_pattern_menu[] = {
+       "Disabled",
+       "Color bars",
+};
+
 static int ov5640_set_ctrl_test_pattern(struct ov5640_dev *sensor, int value)
 {
        return ov5640_mod_reg(sensor, OV5640_REG_PRE_ISP_TEST_SET1,
@@ -2585,11 +2590,6 @@ static const struct v4l2_ctrl_ops ov5640_ctrl_ops = {
        .s_ctrl = ov5640_s_ctrl,
 };
 
-static const char * const test_pattern_menu[] = {
-       "Disabled",
-       "Color bars",
-};
-
 static int ov5640_init_controls(struct ov5640_dev *sensor)
 {
        const struct v4l2_ctrl_ops *ops = &ov5640_ctrl_ops;