From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752237AbbIQRls (ORCPT ); Thu, 17 Sep 2015 13:41:48 -0400 Received: from mail-wi0-f170.google.com ([209.85.212.170]:33645 "EHLO mail-wi0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751976AbbIQRlr (ORCPT ); Thu, 17 Sep 2015 13:41:47 -0400 From: Luis de Bethencourt X-Google-Original-From: Luis de Bethencourt Date: Thu, 17 Sep 2015 19:41:45 +0200 To: linux-kernel@vger.kernel.org Cc: Santosh Shilimkar , Wolfram Sang , Scott Wood Subject: [PATCH 1/2] memory: fsl-corenet: Fix module autoload for OF platform driver Message-ID: <20150917174145.GA29275@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/memory/fsl-corenet-cf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/memory/fsl-corenet-cf.c b/drivers/memory/fsl-corenet-cf.c index d708ded..662d050 100644 --- a/drivers/memory/fsl-corenet-cf.c +++ b/drivers/memory/fsl-corenet-cf.c @@ -61,6 +61,7 @@ static const struct of_device_id ccf_matches[] = { }, {} }; +MODULE_DEVICE_TABLE(of, ccf_matches); struct ccf_err_regs { u32 errdet; /* 0x00 Error Detect Register */ -- 2.4.6