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

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

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
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -2027,10 +2027,9 @@ static int uvc_register_chains(struct uvc_device *dev)

#ifdef CONFIG_MEDIA_CONTROLLER
		ret = uvc_mc_register_entities(chain);
		if (ret < 0) {
			uvc_printk(KERN_INFO, "Failed to register entites "
				"(%d).\n", ret);
		}
		if (ret < 0)
			uvc_printk(KERN_INFO,
				   "Failed to register entities (%d).\n", ret);
#endif
	}