From f3c87a12fa4e195517e14129f525a75936d163cd Mon Sep 17 00:00:00 2001 From: Andrey Kazmin Date: Mon, 16 Dec 2019 14:05:32 +0300 Subject: [PATCH] Fixed using dummy switch without default statement Change-Id: I83dba3f6ab98fd27e48c10f2783d5b7297323195 Signed-off-by: Andrey Kazmin --- drivers/maru/tv/maru_hdmiswitch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/maru/tv/maru_hdmiswitch.c b/drivers/maru/tv/maru_hdmiswitch.c index 45f50bd00d3d..934715bc6c44 100644 --- a/drivers/maru/tv/maru_hdmiswitch.c +++ b/drivers/maru/tv/maru_hdmiswitch.c @@ -345,7 +345,7 @@ static int vidioc_s_ext_ctrls(struct file *file, void *priv, ctrl = ctrls->controls; switch (ctrl->id) { /* FIXME : dummy */ - maru_hdmiswitch_dbg(5, "set controls id : %d\n", ctrl->id); + default: maru_hdmiswitch_dbg(5, "set controls id : %d\n", ctrl->id); } } -- 2.34.1