Skip to content

Commit

Permalink
[media] siano: remove doubled new line
Browse files Browse the repository at this point in the history
sms_debug() and sms_info() already adds a '\n' at the printed
strings. No need to add more.
That helps to cleanup stuff like:
	[ 4868.205648] smscore_onresponse: message not handled.
	[ 4868.205898] smscore_onresponse: message not handled.
and:
	[ 5467.959769] smscore_onresponse:
	data rate 143069 bytes/secs
While here, provides the message name, when the message is not
handled by the smsmdtv core.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Mauro Carvalho Chehab committed Mar 21, 2013
1 parent 07bb6bd commit 98c3f94
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions drivers/media/common/siano/smscoreapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1495,7 +1495,7 @@ void smscore_onresponse(struct smscore_device_t *coredev,
last_sample_time = time_now;

if (time_now - last_sample_time > 10000) {
sms_debug("\ndata rate %d bytes/secs",
sms_debug("data rate %d bytes/secs",
(int)((data_total * 1000) /
(time_now - last_sample_time)));

Expand Down Expand Up @@ -1606,7 +1606,9 @@ void smscore_onresponse(struct smscore_device_t *coredev,
break;

default:
sms_debug("message not handled.\n");
sms_debug("message %s(%d) not handled.",
smscore_translate_msg(phdr->msgType),
phdr->msgType);
break;
}
smscore_putbuffer(coredev, cb);
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/common/siano/smsdvb-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ static int smsdvb_isdbt_set_frontend(struct dvb_frontend *fe)

c->bandwidth_hz = 6000000;

sms_info("%s: freq %d segwidth %d segindex %d\n", __func__,
sms_info("%s: freq %d segwidth %d segindex %d", __func__,
c->frequency, c->isdbt_sb_segment_count,
c->isdbt_sb_segment_idx);

Expand Down

0 comments on commit 98c3f94

Please sign in to comment.