Commit 6689df06 authored by Colin Ian King's avatar Colin Ian King Committed by Mauro Carvalho Chehab

media: uvcvideo: Fix spelling mistake: "entites" -> "entities"

Trivial fix to spelling mistake in uvc_printk message

[Unwrap message string, remove unneeded curly braces]
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 829682b3
...@@ -2027,10 +2027,9 @@ static int uvc_register_chains(struct uvc_device *dev) ...@@ -2027,10 +2027,9 @@ static int uvc_register_chains(struct uvc_device *dev)
#ifdef CONFIG_MEDIA_CONTROLLER #ifdef CONFIG_MEDIA_CONTROLLER
ret = uvc_mc_register_entities(chain); ret = uvc_mc_register_entities(chain);
if (ret < 0) { if (ret < 0)
uvc_printk(KERN_INFO, "Failed to register entites " uvc_printk(KERN_INFO,
"(%d).\n", ret); "Failed to register entities (%d).\n", ret);
}
#endif #endif
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment