Commit ed10b4e0 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

media: cec: drop senseless message

Especially the '0.10' version number is confusing since CEC_ADAP_G_CAPS
returns a completely different version number.
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 51504185
...@@ -388,11 +388,8 @@ EXPORT_SYMBOL_GPL(cec_delete_adapter); ...@@ -388,11 +388,8 @@ EXPORT_SYMBOL_GPL(cec_delete_adapter);
*/ */
static int __init cec_devnode_init(void) static int __init cec_devnode_init(void)
{ {
int ret; int ret = alloc_chrdev_region(&cec_dev_t, 0, CEC_NUM_DEVICES, CEC_NAME);
pr_info("Linux cec interface: v0.10\n");
ret = alloc_chrdev_region(&cec_dev_t, 0, CEC_NUM_DEVICES,
CEC_NAME);
if (ret < 0) { if (ret < 0) {
pr_warn("cec: unable to allocate major\n"); pr_warn("cec: unable to allocate major\n");
return ret; return ret;
......
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