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: Darron Broad <darron@kewl.org> Signed-off-by: Steven Toth <stoth@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
01a8f038c0
commit
4aae8efb49
@@ -848,6 +848,13 @@ void dtv_property_dump(struct dtv_property *tvp)
|
|||||||
{
|
{
|
||||||
int i;
|
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"
|
printk("%s() tvp.cmd = 0x%08x (%s)\n"
|
||||||
,__FUNCTION__
|
,__FUNCTION__
|
||||||
,tvp->cmd
|
,tvp->cmd
|
||||||
|
Reference in New Issue
Block a user