From: Peter Ujfalusi Date: Tue, 15 May 2018 06:43:35 +0000 (+0300) Subject: ASoC: omap: sdma-pcm: Correction for the include files X-Git-Tag: v4.19~773^2~15^2~92 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1cc0fe247958e5ae359e42e4d3cae1cf4f3c8136;p=platform%2Fkernel%2Flinux-rpi3.git 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 Signed-off-by: Mark Brown --- diff --git a/sound/soc/omap/sdma-pcm.c b/sound/soc/omap/sdma-pcm.c index 3e52ccb..21a9c24 100644 --- a/sound/soc/omap/sdma-pcm.c +++ b/sound/soc/omap/sdma-pcm.c @@ -4,13 +4,14 @@ * Author: Peter Ujfalusi */ +#include #include #include #include #include #include #include -#include +#include #include "sdma-pcm.h"