media: imx274: rename IMX274_DEFAULT_MODE to IMX274_DEFAULT_BINNING
The "mode" has been renamed to "binning" in commit 39dd23dc9d
("media: imx274: add cropping support via SELECTION API"), but this
define has not been updated.
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
24614c1e90
commit
3df8adb7d5
|
@ -76,7 +76,7 @@
|
|||
*/
|
||||
#define IMX274_MIN_EXPOSURE_TIME (4 * 260 / 72)
|
||||
|
||||
#define IMX274_DEFAULT_MODE IMX274_BINNING_OFF
|
||||
#define IMX274_DEFAULT_BINNING IMX274_BINNING_OFF
|
||||
#define IMX274_MAX_WIDTH (3840)
|
||||
#define IMX274_MAX_HEIGHT (2160)
|
||||
#define IMX274_MAX_FRAME_RATE (120)
|
||||
|
@ -1871,7 +1871,7 @@ static int imx274_probe(struct i2c_client *client,
|
|||
mutex_init(&imx274->lock);
|
||||
|
||||
/* initialize format */
|
||||
imx274->mode = &imx274_formats[IMX274_DEFAULT_MODE];
|
||||
imx274->mode = &imx274_formats[IMX274_DEFAULT_BINNING];
|
||||
imx274->crop.width = IMX274_MAX_WIDTH;
|
||||
imx274->crop.height = IMX274_MAX_HEIGHT;
|
||||
imx274->format.width = imx274->crop.width / imx274->mode->bin_ratio;
|
||||
|
|
Loading…
Reference in New Issue