From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754332AbbIOPp6 (ORCPT ); Tue, 15 Sep 2015 11:45:58 -0400 Received: from mail-wi0-f177.google.com ([209.85.212.177]:32785 "EHLO mail-wi0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752800AbbIOPp4 (ORCPT ); Tue, 15 Sep 2015 11:45:56 -0400 From: Luis de Bethencourt X-Google-Original-From: Luis de Bethencourt Date: Tue, 15 Sep 2015 17:45:52 +0200 To: linux-kernel@vger.kernel.org Cc: Bartlomiej Zolnierkiewicz , Tejun Heo , linux-ide@vger.kernel.org Subject: [PATCH] ata: pata_macio: Fix module autoload for OF platform driver Message-ID: <20150915154552.GA3060@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 --- Hello, This patch adds the missing MODULE_DEVICE_TABLE() for OF to export that information so modules have the correct aliases built-in and autoloading works correctly. A longer explanation by Javier Canillas can be found here: https://lkml.org/lkml/2015/7/30/519 Thanks, Luis drivers/ata/pata_macio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/ata/pata_macio.c b/drivers/ata/pata_macio.c index a02f76f..aba634e 100644 --- a/drivers/ata/pata_macio.c +++ b/drivers/ata/pata_macio.c @@ -1344,6 +1344,7 @@ static struct of_device_id pata_macio_match[] = }, {}, }; +MODULE_DEVICE_TABLE(of, pata_macio_match); static struct macio_driver pata_macio_driver = { -- 2.4.6