From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: [PATCH -next] ASoC: omap: add sdma-pcm.c MODULE_LICENSE Date: Sat, 12 May 2018 18:41:51 -0700 Message-ID: <2bf2991a-da55-00a4-bc39-a0ee61bad4d0@infradead.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) by alsa0.perex.cz (Postfix) with ESMTP id 171A4266F88 for ; Sun, 13 May 2018 03:42:05 +0200 (CEST) Content-Language: en-US List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: LKML , linux-omap@vger.kernel.org, moderated for non-subscribers Cc: Stephen Rothwell , Liam Girdwood , Peter Ujfalusi , Mark Brown , Andrew Morton , Jarkko Nikula List-Id: alsa-devel@alsa-project.org From: Randy Dunlap ASoC: omap: add sdma-pcm.c MODULE_LICENSE Fixes this build warning: WARNING: modpost: missing MODULE_LICENSE() in sound/soc/omap/snd-soc-sdma.o Signed-off-by: Randy Dunlap Cc: Peter Ujfalusi Cc: Jarkko Nikula Cc: Liam Girdwood Cc: Mark Brown --- sound/soc/omap/sdma-pcm.c | 3 +++ 1 file changed, 3 insertions(+) --- linux-next-20180510.orig/sound/soc/omap/sdma-pcm.c +++ linux-next-20180510/sound/soc/omap/sdma-pcm.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include "sdma-pcm.h" @@ -66,3 +67,5 @@ int sdma_pcm_platform_register(struct de return devm_snd_dmaengine_pcm_register(dev, config, flags); } EXPORT_SYMBOL_GPL(sdma_pcm_platform_register); + +MODULE_LICENSE("GPL v2");