mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-23 03:08:06 +07:00
ALSA: memalloc: declare snd_sgbuf_aligned_pages() unconditionally
Make this helper inline function available for all platforms. This helps solve 0-day compilation issues when CONFIG_SND_DMA_SGBUF is not defined. Reported-by: kbuild test robot <lkp@intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
ce397d215c
commit
4cae99d9b5
@ -67,6 +67,14 @@ struct snd_dma_buffer {
|
|||||||
void *private_data; /* private for allocator; don't touch */
|
void *private_data; /* private for allocator; don't touch */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* return the pages matching with the given byte size
|
||||||
|
*/
|
||||||
|
static inline unsigned int snd_sgbuf_aligned_pages(size_t size)
|
||||||
|
{
|
||||||
|
return (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_SND_DMA_SGBUF
|
#ifdef CONFIG_SND_DMA_SGBUF
|
||||||
/*
|
/*
|
||||||
* Scatter-Gather generic device pages
|
* Scatter-Gather generic device pages
|
||||||
@ -90,14 +98,6 @@ struct snd_sg_buf {
|
|||||||
struct device *dev;
|
struct device *dev;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* return the pages matching with the given byte size
|
|
||||||
*/
|
|
||||||
static inline unsigned int snd_sgbuf_aligned_pages(size_t size)
|
|
||||||
{
|
|
||||||
return (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* return the physical address at the corresponding offset
|
* return the physical address at the corresponding offset
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user