Allocate pages with the given size
void * snd_malloc_pages(size_t size, gfp_t gfp_flags);
size
the size to allocate in bytes
gfp_flags
the allocation conditions, GFP_XXX
Allocates the physically contiguous pages with the given size.
The pointer of the buffer, or NULL if no enough memory.