aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntti Palosaari <crope@iki.fi>2014-12-05 13:57:03 -0500
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-01-29 15:42:43 -0500
commite5dd1100c7d3493a8a3c6ac79468978009204104 (patch)
tree018488388ecc71e5ee80404240f7af2d4da3310e
parent955e0ab8ce4cf5466e1c936f85d9ff28d316ee58 (diff)
[media] si2168: change stream id debug log formatter
Change formatter from signed to unsigned as stream_id is 32bit unsigned variable. Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
-rw-r--r--drivers/media/dvb-frontends/si2168.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/dvb-frontends/si2168.c b/drivers/media/dvb-frontends/si2168.c
index f953178b6bfc..f3fabd5fe455 100644
--- a/drivers/media/dvb-frontends/si2168.c
+++ b/drivers/media/dvb-frontends/si2168.c
@@ -155,10 +155,10 @@ static int si2168_set_frontend(struct dvb_frontend *fe)
155 u8 bandwidth, delivery_system; 155 u8 bandwidth, delivery_system;
156 156
157 dev_dbg(&client->dev, 157 dev_dbg(&client->dev,
158 "delivery_system=%u modulation=%u frequency=%u bandwidth_hz=%u symbol_rate=%u inversion=%u, stream_id=%d\n", 158 "delivery_system=%u modulation=%u frequency=%u bandwidth_hz=%u symbol_rate=%u inversion=%u stream_id=%u\n",
159 c->delivery_system, c->modulation, 159 c->delivery_system, c->modulation, c->frequency,
160 c->frequency, c->bandwidth_hz, c->symbol_rate, 160 c->bandwidth_hz, c->symbol_rate, c->inversion,
161 c->inversion, c->stream_id); 161 c->stream_id);
162 162
163 if (!dev->active) { 163 if (!dev->active) {
164 ret = -EAGAIN; 164 ret = -EAGAIN;