diff options
author | Antti Palosaari <crope@iki.fi> | 2014-12-05 19:57:03 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-01-29 21:42:43 +0100 |
commit | e5dd1100c7d3493a8a3c6ac79468978009204104 (patch) | |
tree | 018488388ecc71e5ee80404240f7af2d4da3310e /drivers/media/dvb-frontends/si2168.c | |
parent | [media] si2168: change firmware version print from debug to info (diff) | |
download | linux-e5dd1100c7d3493a8a3c6ac79468978009204104.tar.xz linux-e5dd1100c7d3493a8a3c6ac79468978009204104.zip |
[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>
Diffstat (limited to 'drivers/media/dvb-frontends/si2168.c')
-rw-r--r-- | drivers/media/dvb-frontends/si2168.c | 8 |
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) u8 bandwidth, delivery_system; dev_dbg(&client->dev, - "delivery_system=%u modulation=%u frequency=%u bandwidth_hz=%u symbol_rate=%u inversion=%u, stream_id=%d\n", - c->delivery_system, c->modulation, - c->frequency, c->bandwidth_hz, c->symbol_rate, - c->inversion, c->stream_id); + "delivery_system=%u modulation=%u frequency=%u bandwidth_hz=%u symbol_rate=%u inversion=%u stream_id=%u\n", + c->delivery_system, c->modulation, c->frequency, + c->bandwidth_hz, c->symbol_rate, c->inversion, + c->stream_id); if (!dev->active) { ret = -EAGAIN; |