mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
43d35ccc36
The recent fix for setting up the DMA buffer type on RME drivers tried
to address the non-standard memory managements and changed the DMA
buffer information to the standard snd_dma_buffer object that is
allocated at the probe time. However, I overlooked that the RME
drivers handle the buffer addresses based on 64k alignment, and the
previous conversion broke that silently.
This patch is an attempt to fix the regression. The snd_dma_buffer
objects are copied to the original data with the correction to the
aligned accesses, and those are passed to snd_pcm_set_runtime_buffer()
helpers instead. The original snd_dma_buffer objects are managed by
devres, hence they'll be released automagically.
Fixes:
|
||
---|---|---|
.. | ||
hdsp.c | ||
hdspm.c | ||
Makefile | ||
rme9652.c |