ALSA: firewire-lib: use clear name for variable of CIP header
This commit is to distinguish variable of CIP header from variable of isochronous context header. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
committed by
Takashi Iwai
parent
26cd1e5850
commit
07ea238ca1
@@ -286,15 +286,15 @@ EXPORT_SYMBOL(amdtp_stream_set_parameters);
|
|||||||
unsigned int amdtp_stream_get_max_payload(struct amdtp_stream *s)
|
unsigned int amdtp_stream_get_max_payload(struct amdtp_stream *s)
|
||||||
{
|
{
|
||||||
unsigned int multiplier = 1;
|
unsigned int multiplier = 1;
|
||||||
unsigned int header_size = 0;
|
unsigned int cip_header_size = 0;
|
||||||
|
|
||||||
if (s->flags & CIP_JUMBO_PAYLOAD)
|
if (s->flags & CIP_JUMBO_PAYLOAD)
|
||||||
multiplier = 5;
|
multiplier = 5;
|
||||||
if (!(s->flags & CIP_NO_HEADER))
|
if (!(s->flags & CIP_NO_HEADER))
|
||||||
header_size = 8;
|
cip_header_size = sizeof(__be32) * 2;
|
||||||
|
|
||||||
return header_size +
|
return cip_header_size +
|
||||||
s->syt_interval * s->data_block_quadlets * 4 * multiplier;
|
s->syt_interval * s->data_block_quadlets * sizeof(__be32) * multiplier;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(amdtp_stream_get_max_payload);
|
EXPORT_SYMBOL(amdtp_stream_get_max_payload);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user