diff options
author | Steven Toth <stoth@linuxtv.org> | 2009-03-28 12:58:28 -0400 |
---|---|---|
committer | Steven Toth <stoth@linuxtv.org> | 2009-03-28 12:58:28 -0400 |
commit | bcdb0c1f2b2cffa2d507eed6352080933d40793d (patch) | |
tree | 015b611ca8e8cbb64ca3c3fc16b732a830880166 | |
parent | 611e15a080c06e90f91feee1be742463a0e256d6 (diff) | |
download | mediapointer-dvb-s2-bcdb0c1f2b2cffa2d507eed6352080933d40793d.tar.gz mediapointer-dvb-s2-bcdb0c1f2b2cffa2d507eed6352080933d40793d.tar.bz2 |
cx23885: bugfix error message if firmware is not found
From: Steven Toth <stoth@linuxtv.org>
If the firmware failed to be found the error message indicated
the incorrect filename.
Priority: normal
Signed-off-by: Steven Toth <stoth@linuxtv.org>
-rw-r--r-- | linux/drivers/media/video/cx23885/cx23885-417.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx23885/cx23885-417.c b/linux/drivers/media/video/cx23885/cx23885-417.c index 7e7e75237..adfb79799 100644 --- a/linux/drivers/media/video/cx23885/cx23885-417.c +++ b/linux/drivers/media/video/cx23885/cx23885-417.c @@ -896,7 +896,7 @@ static int cx23885_load_firmware(struct cx23885_dev *dev) if (retval != 0) { printk(KERN_ERR "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 " "not work without firmware loaded!\n"); return -1; |