aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb-frontends/si2168.c
diff options
context:
space:
mode:
authorBrad Love <brad@nextdimension.cc>2018-01-12 11:19:40 -0500
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2018-03-06 07:26:11 -0500
commit3061df060fcaeebd77e183283f70fdc4349eef83 (patch)
treed8a40b3348990a547560b81035ec35ae03957aee /drivers/media/dvb-frontends/si2168.c
parentmedia: lgdt3306a: Announce successful creation (diff)
downloadlinux-dev-3061df060fcaeebd77e183283f70fdc4349eef83.tar.xz
linux-dev-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/media/dvb-frontends/si2168.c')
-rw-r--r--drivers/media/dvb-frontends/si2168.c2
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;
}