From 83bd600e397e59c6af4644c507961d91827c9863 Mon Sep 17 00:00:00 2001 From: Michael Hunold Date: Thu, 13 May 2004 10:52:08 +0000 Subject: - change default fw name to tda1004x.bin until someone comes up with a better name - change the error message --- linux/drivers/media/dvb/frontends/tda1004x.c | 6 +++--- 1 file 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 #include @@ -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; } -- cgit v1.2.3