Commit d35ed627 authored by Steven Toth's avatar Steven Toth Committed by Mauro Carvalho Chehab

V4L/DVB (11296): cx23885: bugfix error message if firmware is not found

If the firmware failed to be found the error message indicated
the incorrect filename.
Signed-off-by: default avatarSteven Toth <stoth@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent c0714f6c
...@@ -896,7 +896,7 @@ static int cx23885_load_firmware(struct cx23885_dev *dev) ...@@ -896,7 +896,7 @@ static int cx23885_load_firmware(struct cx23885_dev *dev)
if (retval != 0) { if (retval != 0) {
printk(KERN_ERR printk(KERN_ERR
"ERROR: Hotplug firmware request failed (%s).\n", "ERROR: Hotplug firmware request failed (%s).\n",
CX2341X_FIRM_ENC_FILENAME); CX23885_FIRM_IMAGE_NAME);
printk(KERN_ERR "Please fix your hotplug setup, the board will " printk(KERN_ERR "Please fix your hotplug setup, the board will "
"not work without firmware loaded!\n"); "not work without firmware loaded!\n");
return -1; return -1;
......
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