Commit 62d297ed authored by Corentin Labbe's avatar Corentin Labbe Committed by Mauro Carvalho Chehab
Browse files

media: zoran: do not print random guest 0



The slot 0 of guest is never initialized and so we print later random
data.

Signed-off-by: default avatarCorentin Labbe <clabbe@baylibre.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent e2b35ed6
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -158,6 +158,9 @@ static void dump_guests(struct zoran *zr)
	if (zr36067_debug > 2) {
		int i, guest[8];

		/* do not print random data */
		guest[0] = 0;

		for (i = 1; i < 8; i++) /* Don't read jpeg codec here */
			guest[i] = post_office_read(zr, i, 0);

@@ -170,6 +173,10 @@ void detect_guest_activity(struct zoran *zr)
	int timeout, i, j, res, guest[8], guest0[8], change[8][3];
	ktime_t t0, t1;

	/* do not print random data */
	guest[0] = 0;
	guest0[0] = 0;

	dump_guests(zr);
	pci_info(zr->pci_dev, "Detecting guests activity, please wait...\n");
	for (i = 1; i < 8; i++) /* Don't read jpeg codec here */