2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-23 12:43:55 +08:00

ASoC: omap: sdma-pcm: Correction for the include files

The sdma-pcm does not need any information from omap-dma.h, it only needs
to include the omap-dmaengine.h - for the omap_dma_filter_fn, but that
might not be needed at all as OMAP1 was converted to dma_slave_map, but
I can not test OMAP1.

Add the linux/device.h include as well for devm_kzalloc()

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Peter Ujfalusi 2018-05-15 09:43:35 +03:00 committed by Mark Brown
parent 7bf8ad175a
commit 1cc0fe2479
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -4,13 +4,14 @@
* Author: Peter Ujfalusi <peter.ujfalusi@ti.com>
*/
#include <linux/device.h>
#include <linux/module.h>
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/soc.h>
#include <sound/dmaengine_pcm.h>
#include <linux/omap-dma.h>
#include <linux/omap-dmaengine.h>
#include "sdma-pcm.h"