diff options
author | Brad Love <brad@nextdimension.cc> | 2018-01-12 11:19:40 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2018-03-06 07:26:11 -0500 |
commit | 3061df060fcaeebd77e183283f70fdc4349eef83 (patch) | |
tree | d8a40b3348990a547560b81035ec35ae03957aee /drivers | |
parent | e7f4d7516aa3ed912946fdf3863be8d1489fd836 (diff) | |
download | blackbird-op-linux-3061df060fcaeebd77e183283f70fdc4349eef83.tar.gz blackbird-op-linux-3061df060fcaeebd77e183283f70fdc4349eef83.zip |
media: si2168: Announce frontend creation failure
The driver outputs on success, but is silent on failure. Give
one message that probe failed.
Signed-off-by: Brad Love <brad@nextdimension.cc>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/dvb-frontends/si2168.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/si2168.c b/drivers/media/dvb-frontends/si2168.c index 429c03aaa902..c1a638c8565d 100644 --- a/drivers/media/dvb-frontends/si2168.c +++ b/drivers/media/dvb-frontends/si2168.c @@ -810,7 +810,7 @@ static int si2168_probe(struct i2c_client *client, err_kfree: kfree(dev); err: - dev_dbg(&client->dev, "failed=%d\n", ret); + dev_warn(&client->dev, "probe failed = %d\n", ret); return ret; } |