From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752889AbbIQWNr (ORCPT ); Thu, 17 Sep 2015 18:13:47 -0400 Received: from mail-wi0-f171.google.com ([209.85.212.171]:35581 "EHLO mail-wi0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751999AbbIQWNa (ORCPT ); Thu, 17 Sep 2015 18:13:30 -0400 From: Luis de Bethencourt X-Google-Original-From: Luis de Bethencourt Date: Fri, 18 Sep 2015 00:13:28 +0200 To: linux-kernel@vger.kernel.org Cc: David Woodhouse , Brian Norris , Uwe =?unknown-8bit?B?S2xlaW5lLUvDg8K2bmln?= , Sascha Hauer , Baruch Siach , "Koul, Vinod" , Krzysztof Kozlowski , linux-mtd@lists.infradead.org Subject: [PATCH 4/5] mtd: mxc_nand: Fix module autoload for OF platform driver Message-ID: <20150917221328.GA9291@goodgumbo.baconseed.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 --- drivers/mtd/nand/mxc_nand.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c index 2426db8..ab281b6 100644 --- a/drivers/mtd/nand/mxc_nand.c +++ b/drivers/mtd/nand/mxc_nand.c @@ -1458,6 +1458,7 @@ static const struct of_device_id mxcnd_dt_ids[] = { }, { /* sentinel */ } }; +MODULE_DEVICE_TABLE(of, mxcnd_dt_ids); static int __init mxcnd_probe_dt(struct mxc_nand_host *host) { -- 2.4.6