diff options
-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; } |