mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
[media] smiapp: Use highest bits-per-pixel for sensor internal format
The format shown on the links internal to the sensor was the first one enumerated from the sensor, not the highest bit depth data that can be produced by the sensor. Correct this. Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
53102d202f
commit
f67e1573f0
1 changed files with 5 additions and 1 deletions
|
@ -777,7 +777,11 @@ static int smiapp_get_mbus_formats(struct smiapp_sensor *sensor)
|
|||
dev_dbg(&client->dev, "jolly good! %d\n", j);
|
||||
|
||||
sensor->default_mbus_frame_fmts |= 1 << j;
|
||||
if (!sensor->csi_format) {
|
||||
if (!sensor->csi_format
|
||||
|| f->width > sensor->csi_format->width
|
||||
|| (f->width == sensor->csi_format->width
|
||||
&& f->compressed
|
||||
> sensor->csi_format->compressed)) {
|
||||
sensor->csi_format = f;
|
||||
sensor->internal_csi_format = f;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue