diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2023-01-10 14:49:32 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2023-01-12 12:14:50 +0100 |
commit | 7fc693e474725544e5ee1cabde34d95e544eb708 (patch) | |
tree | 898449f16517e6f32cf9425092cbda892e8c8b15 /sound/firewire/amdtp-stream.c | |
parent | ALSA: firewire-lib: move parameter for pcm frame multiplier from context payl... (diff) | |
download | linux-7fc693e474725544e5ee1cabde34d95e544eb708.tar.xz linux-7fc693e474725544e5ee1cabde34d95e544eb708.zip |
ALSA: firewire-lib: obsolete return value from context payload processing layer
This commit obsoletes return value from the context payload processing layer
since the multiplier between the data block count and PCM frame count was
moved to the packet streaming processing layer.
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Link: https://lore.kernel.org/r/20230110134933.322794-3-o-takashi@sakamocchi.jp
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/amdtp-stream.c')
-rw-r--r-- | sound/firewire/amdtp-stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/firewire/amdtp-stream.c b/sound/firewire/amdtp-stream.c index 453751e4fef8..06a24a7f63c1 100644 --- a/sound/firewire/amdtp-stream.c +++ b/sound/firewire/amdtp-stream.c @@ -1043,7 +1043,7 @@ static void process_ctx_payloads(struct amdtp_stream *s, int i; pcm = READ_ONCE(s->pcm); - (void)s->process_ctx_payloads(s, desc, count, pcm); + s->process_ctx_payloads(s, desc, count, pcm); if (pcm) { unsigned int data_block_count = 0; |