From patchwork Thu Sep 3 10:58:23 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luis de Bethencourt X-Patchwork-Id: 7115961 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 45103BEEC1 for ; Thu, 3 Sep 2015 11:02:04 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 81E642074A for ; Thu, 3 Sep 2015 11:02:03 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 0E32C20748 for ; Thu, 3 Sep 2015 11:02:02 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 2CA2A265882; Thu, 3 Sep 2015 13:02:01 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_LOW, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id A4B562658EB; Thu, 3 Sep 2015 13:00:22 +0200 (CEST) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id EC5F526589B; Thu, 3 Sep 2015 13:00:18 +0200 (CEST) Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) by alsa0.perex.cz (Postfix) with ESMTP id 309AE265906 for ; Thu, 3 Sep 2015 12:58:25 +0200 (CEST) Received: by wicfx3 with SMTP id fx3so47788314wic.0 for ; Thu, 03 Sep 2015 03:58:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=P8p7lwOZYZ4VvNPhvmWi/Da4vyXDCFSuWhr2aiqM+gc=; b=qmifJAk0qqkcczAr7OHbQkjL17R5gTn55wi8Xru7BkxaigAh3SrUe/4oquTEEQLRNC bamjUWFQdVmX4ElKTZ+Emj3zmq2p3THbrGPe2w4D6gInNIjoTslOQ03eyB7r/b4/FlIp 5l/zR/g4y0H81F18sklsZuG/Bm0tEOHdYzleMV2E1iLGHK8U0U6OmZEG5hiwh1+NdjfL jCAVtzxdghdXbH6J++P0kSycCapPO52mOdwwOeQWnNYN6HH/uFiJrum3PsrhaUykQLqX zPkOqixVS08ob9dhgyhTMMuwXlPpwzEa50AARhI/guvSYERU2YRJyaAboQ5g/3CKWeh1 Q+0g== X-Received: by 10.180.21.137 with SMTP id v9mr13004918wie.8.1441277905016; Thu, 03 Sep 2015 03:58:25 -0700 (PDT) Received: from localhost (goodgumbo.baconseed.org. [94.23.38.65]) by smtp.gmail.com with ESMTPSA id kx6sm1954283wjb.5.2015.09.03.03.58.24 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 03 Sep 2015 03:58:24 -0700 (PDT) Date: Thu, 3 Sep 2015 12:58:23 +0200 From: Luis de Bethencourt To: linux-kernel@vger.kernel.org Message-ID: <20150903105823.GA16890@goodgumbo.baconseed.org> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: alsa-devel@alsa-project.org, Lars-Peter Clausen , Zubair Lutfullah Kakakhel , Wolfram Sang , Takashi Iwai , Liam Girdwood , Javier Martinez Canillas , Mark Brown Subject: [alsa-devel] [PATCH 07/12] ASoC: fsl_sai: Fix module autoload for OF platform driver X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" 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 X-Virus-Scanned: ClamAV using ClamSMTP This platform driver has a OF device ID table but the OF module alias information is not created so module autoloading won't work. Signed-off-by: Luis de Bethencourt --- sound/soc/fsl/fsl_sai.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/fsl/fsl_sai.c b/sound/soc/fsl/fsl_sai.c index 5c73bea..ec14427 100644 --- a/sound/soc/fsl/fsl_sai.c +++ b/sound/soc/fsl/fsl_sai.c @@ -801,6 +801,7 @@ static const struct of_device_id fsl_sai_ids[] = { { .compatible = "fsl,imx6sx-sai", }, { /* sentinel */ } }; +MODULE_DEVICE_TABLE(of, fsl_sai_ids); static struct platform_driver fsl_sai_driver = { .probe = fsl_sai_probe,