bluetooth: Minor style fixes

Fix some minor style fixes to be consistent with the project coding
style.
This commit is contained in:
Mikel Astiz 2012-07-27 16:41:20 +02:00 committed by Tanu Kaskinen
parent d16546ceca
commit 8f0df3326b

View file

@ -1701,9 +1701,8 @@ static int bt_transport_config_a2dp(struct userdata *u) {
a2dp->frame_length = sbc_get_frame_length(&a2dp->sbc); a2dp->frame_length = sbc_get_frame_length(&a2dp->sbc);
u->block_size = u->block_size =
((u->link_mtu - sizeof(struct rtp_header) - sizeof(struct rtp_payload)) (u->link_mtu - sizeof(struct rtp_header) - sizeof(struct rtp_payload))
/ a2dp->frame_length / a2dp->frame_length * a2dp->codesize;
* a2dp->codesize);
pa_log_info("SBC parameters:\n\tallocation=%u\n\tsubbands=%u\n\tblocks=%u\n\tbitpool=%u\n", pa_log_info("SBC parameters:\n\tallocation=%u\n\tsubbands=%u\n\tblocks=%u\n\tbitpool=%u\n",
a2dp->sbc.allocation, a2dp->sbc.subbands, a2dp->sbc.blocks, a2dp->sbc.bitpool); a2dp->sbc.allocation, a2dp->sbc.subbands, a2dp->sbc.blocks, a2dp->sbc.bitpool);