diff options
author | Michael Hunold <devnull@localhost> | 2004-05-13 10:52:08 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2004-05-13 10:52:08 +0000 |
commit | 83bd600e397e59c6af4644c507961d91827c9863 (patch) | |
tree | 8dc261fcfd40047654ee292d886625d4d4f6550c | |
parent | e4fa3c987a43338bc0dcb2ed4b01d61abe2b26ab (diff) | |
download | mediapointer-dvb-s2-83bd600e397e59c6af4644c507961d91827c9863.tar.gz mediapointer-dvb-s2-83bd600e397e59c6af4644c507961d91827c9863.tar.bz2 |
- change default fw name to tda1004x.bin until someone comes up with a better name
- change the error message
-rw-r--r-- | linux/drivers/media/dvb/frontends/tda1004x.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/dvb/frontends/tda1004x.c b/linux/drivers/media/dvb/frontends/tda1004x.c index f2c0c42ac..e172e4805 100644 --- a/linux/drivers/media/dvb/frontends/tda1004x.c +++ b/linux/drivers/media/dvb/frontends/tda1004x.c @@ -32,7 +32,7 @@ wget http://www.technotrend.de/new/215/TTweb_215a_budget_20_05_2003.zip unzip -j TTweb_215a_budget_20_05_2003.zip Software/Oem/PCI/App/ttlcdacc.dll */ - +#define TDA1004X_DEFAULT_FIRMWARE "tda1004x.bin" #include <linux/init.h> #include <linux/module.h> @@ -1485,9 +1485,9 @@ static int attach_adapter(struct i2c_adapter *adapter) /* request the firmware, this will block until someone uploads it */ printk("tda1004x: waiting for firmware upload...\n"); - ret = request_firmware(&fw, "tda1004x.fw", &client->dev); + ret = request_firmware(&fw, TDA1004X_DEFAULT_FIRMWARE, &client->dev); if (ret) { - printk("tda1004x: firmware upload timeout\n"); + printk("tda1004x: no firmware upload (timeout or file not found?)\n"); goto out; } |