Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4aae8efb authored by Darron Broad's avatar Darron Broad Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (9171): S2API: Stop an OOPS if illegal commands are dumped in S2API.



Quick fix to stop an OOPS if illegal commands are dumped in S2API.

Signed-off-by: default avatarDarron Broad <darron@kewl.org>
Signed-off-by: default avatarSteven Toth <stoth@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 01a8f038
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -848,6 +848,13 @@ void dtv_property_dump(struct dtv_property *tvp)
{
	int i;

	if( (tvp->cmd <= 0 || tvp->cmd > DTV_DELIVERY_SYSTEM) &&
			tvp->cmd != DTV_API_VERSION) {
		printk("%s: tvp.cmd = 0x%08x (undefined/unknown/invalid)\n",
			__func__, tvp->cmd);
		return;
	}

	printk("%s() tvp.cmd    = 0x%08x (%s)\n"
		,__FUNCTION__
		,tvp->cmd