From patchwork Sun May 13 01:41:51 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10396009 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id EE33460236 for ; Sun, 13 May 2018 01:42:14 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C98DF28F44 for ; Sun, 13 May 2018 01:42:14 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id BACAD29025; Sun, 13 May 2018 01:42:14 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 79CB428F44 for ; Sun, 13 May 2018 01:42:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751129AbeEMBmG (ORCPT ); Sat, 12 May 2018 21:42:06 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:51324 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751110AbeEMBmG (ORCPT ); Sat, 12 May 2018 21:42:06 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:MIME-Version:Date:Message-ID:Subject:From:Cc:To:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=3RhaT8lqK6Gan6lrVJ/0zIOcutxulEv6zgvqOdJP/9w=; b=VV03p8+1XePcCmsOWCG5Ly88w bAwCa6PslRaGgBe2yAcClhkSZmbMtFtjA3/PrukpwmNbPf++lxMA6VqIJXD/SBIoe6/cIaqvB+KFM xZVf/rGcWv87UP+4UT4UbLs1F+23J3bI7rZroDGoSJLDavya8Jg3tsjSOffU0f8LDHrznnoZ0s81A 2sM/iEiAu5jCuUAaYizbLXQ+qhS/gRGzKG2jBreW4QF/08oBz6TKu2YHfAVenQhZgEtktPh60n6MZ F+k42vugjWZxNanL0rZgVdOC9JMQJ/pv7s0kHfEQytTjrEdNQCpkU9llbL5hliyM5t7/U+Y5p2ErB JavqsPASQ==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=dragon.dunlab) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fHg1J-0007mq-PX; Sun, 13 May 2018 01:41:53 +0000 To: LKML , linux-omap@vger.kernel.org, moderated for non-subscribers Cc: Andrew Morton , Liam Girdwood , Mark Brown , Jarkko Nikula , Peter Ujfalusi , Stephen Rothwell From: Randy Dunlap Subject: [PATCH -next] ASoC: omap: add sdma-pcm.c MODULE_LICENSE Message-ID: <2bf2991a-da55-00a4-bc39-a0ee61bad4d0@infradead.org> Date: Sat, 12 May 2018 18:41:51 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 Content-Language: en-US Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP 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(+) -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- 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");