From mboxrd@z Thu Jan 1 00:00:00 1970 From: Manuel Lauss Subject: [PATCH, RESEND] ALSA: ASoC: au1x: fix ac97c module build Date: Wed, 17 Jul 2013 21:49:27 +0200 Message-ID: <1374090567-1964-1-git-send-email-manuel.lauss@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail-ea0-f173.google.com (mail-ea0-f173.google.com [209.85.215.173]) by alsa0.perex.cz (Postfix) with ESMTP id 3EF7F2654ED for ; Wed, 17 Jul 2013 21:49:31 +0200 (CEST) Received: by mail-ea0-f173.google.com with SMTP id g15so1283829eak.4 for ; Wed, 17 Jul 2013 12:49:31 -0700 (PDT) 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: alsa-devel@alsa-project.org, alsa-devel@vger.kernel.org Cc: Manuel Lauss , Mark Brown List-Id: alsa-devel@alsa-project.org The recent conversion to module_platform_driver left a stray ampersand in there, preventing a build. Cc: Mark Brown Signed-off-by: Manuel Lauss --- Against 3.11-rc1, added Mark to Cc. sound/soc/au1x/ac97c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/au1x/ac97c.c b/sound/soc/au1x/ac97c.c index d6f7694..c8a2de1 100644 --- a/sound/soc/au1x/ac97c.c +++ b/sound/soc/au1x/ac97c.c @@ -341,7 +341,7 @@ static struct platform_driver au1xac97c_driver = { .remove = au1xac97c_drvremove, }; -module_platform_driver(&au1xac97c_driver); +module_platform_driver(au1xac97c_driver); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Au1000/1500/1100 AC97C ASoC driver"); -- 1.8.3.2