From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752760AbbIQSQz (ORCPT ); Thu, 17 Sep 2015 14:16:55 -0400 Received: from mail-wi0-f180.google.com ([209.85.212.180]:34986 "EHLO mail-wi0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751371AbbIQSQw (ORCPT ); Thu, 17 Sep 2015 14:16:52 -0400 From: Luis de Bethencourt X-Google-Original-From: Luis de Bethencourt Date: Thu, 17 Sep 2015 20:16:50 +0200 To: linux-kernel@vger.kernel.org Cc: Samuel Ortiz , Lee Jones Subject: [PATCH 4/4] mfd: sm501: Fix module autoload for OF platform driver Message-ID: <20150917181650.GA30930@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/mfd/sm501.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mfd/sm501.c b/drivers/mfd/sm501.c index 91077ef..c646784 100644 --- a/drivers/mfd/sm501.c +++ b/drivers/mfd/sm501.c @@ -1719,6 +1719,7 @@ static const struct of_device_id of_sm501_match_tbl[] = { { .compatible = "smi,sm501", }, { /* end */ } }; +MODULE_DEVICE_TABLE(of, of_sm501_match_tbl); static struct platform_driver sm501_plat_driver = { .driver = { -- 2.4.6