Commit d2c45230 authored by Gregory Lardiere's avatar Gregory Lardiere Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (10789): m5602-s5k4aa: Split up the initial sensor probe in chunks.



The previous probe rotine tried to read 6 bytes in one chunk which currently isn't allowed. This is the rev. 10346 243399e67c41 readded with a high priority.

Signed-off-by: default avatarGregory Lardiere <spmf2004-m560x@yahoo.fr>
Signed-off-by: default avatarErik Andrén <erik.andren@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 559595a9
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -102,7 +102,11 @@ int s5k4aa_probe(struct sd *sd)
	}

	/* Test some registers, but we don't know their exact meaning yet */
	if (m5602_read_sensor(sd, 0x00, prod_id, sizeof(prod_id)))
	if (m5602_read_sensor(sd, 0x00, prod_id, 2))
		return -ENODEV;
	if (m5602_read_sensor(sd, 0x02, prod_id+2, 2))
		return -ENODEV;
	if (m5602_read_sensor(sd, 0x04, prod_id+4, 2))
		return -ENODEV;

	if (memcmp(prod_id, expected_prod_id, sizeof(prod_id)))