1
0
Fork 0

[media] si2157: print chip version

Print chip version once using log level into when init() is called.
Remove cold/warm state printing as those are not very useful.

Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
hifive-unleashed-5.1
Antti Palosaari 2014-12-06 18:12:39 -03:00 committed by Mauro Carvalho Chehab
parent c7011845ca
commit 6c3725332d
1 changed files with 7 additions and 4 deletions

View File

@ -128,7 +128,8 @@ static int si2157_init(struct dvb_frontend *fe)
case SI2157_A30:
case SI2147_A30:
case SI2146_A10:
goto skip_fw_download;
fw_file = NULL;
break;
default:
dev_err(&client->dev, "unknown chip version Si21%d-%c%c%c\n",
cmd.args[2], cmd.args[1],
@ -137,9 +138,11 @@ static int si2157_init(struct dvb_frontend *fe)
goto err;
}
/* cold state - try to download firmware */
dev_info(&client->dev, "found a '%s' in cold state\n",
si2157_ops.info.name);
dev_info(&client->dev, "found a 'Silicon Labs Si21%d-%c%c%c'\n",
cmd.args[2], cmd.args[1], cmd.args[3], cmd.args[4]);
if (fw_file == NULL)
goto skip_fw_download;
/* request the firmware, this will block and timeout */
ret = request_firmware(&fw, fw_file, &client->dev);