Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

media: i2c: imx290: Specify HMAX values in decimal

The HMAX value specifies the total line length in pixels. It's thus more
readable in decimal than hexadecimal. Fix it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>

authored by

Laurent Pinchart and committed by
Sakari Ailus
72825bc6 72e4bf6d

+4 -4
+4 -4
drivers/media/i2c/imx290.c
··· 307 307 { 308 308 .width = 1920, 309 309 .height = 1080, 310 - .hmax = 0x1130, 310 + .hmax = 4400, 311 311 .link_freq_index = FREQ_INDEX_1080P, 312 312 .data = imx290_1080p_settings, 313 313 .data_size = ARRAY_SIZE(imx290_1080p_settings), ··· 315 315 { 316 316 .width = 1280, 317 317 .height = 720, 318 - .hmax = 0x19c8, 318 + .hmax = 6600, 319 319 .link_freq_index = FREQ_INDEX_720P, 320 320 .data = imx290_720p_settings, 321 321 .data_size = ARRAY_SIZE(imx290_720p_settings), ··· 326 326 { 327 327 .width = 1920, 328 328 .height = 1080, 329 - .hmax = 0x0898, 329 + .hmax = 2200, 330 330 .link_freq_index = FREQ_INDEX_1080P, 331 331 .data = imx290_1080p_settings, 332 332 .data_size = ARRAY_SIZE(imx290_1080p_settings), ··· 334 334 { 335 335 .width = 1280, 336 336 .height = 720, 337 - .hmax = 0x0ce4, 337 + .hmax = 3300, 338 338 .link_freq_index = FREQ_INDEX_720P, 339 339 .data = imx290_720p_settings, 340 340 .data_size = ARRAY_SIZE(imx290_720p_settings),