Эх сурвалжийг харах

V4L/DVB (3385): Return -EINVAL for unknown commands in msp3400 module.

- Return -EINVAL for unknown commands.

Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Hans Verkuil 19 жил өмнө
parent
commit
cb8d1aa78e

+ 2 - 2
drivers/media/video/msp3400-driver.c

@@ -1031,8 +1031,8 @@ static int msp_command(struct i2c_client *client, unsigned int cmd, void *arg)
 	}
 
 	default:
-		/* nothing */
-		break;
+		/* unknown */
+		return -EINVAL;
 	}
 	return 0;
 }