From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753809AbbIPVAW (ORCPT ); Wed, 16 Sep 2015 17:00:22 -0400 Received: from mail-wi0-f169.google.com ([209.85.212.169]:33588 "EHLO mail-wi0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753775AbbIPVAU (ORCPT ); Wed, 16 Sep 2015 17:00:20 -0400 From: Luis de Bethencourt X-Google-Original-From: Luis de Bethencourt Date: Wed, 16 Sep 2015 23:00:17 +0200 To: linux-kernel@vger.kernel.org Cc: Dan Williams , Vinod Koul , Michal Simek , =?unknown-8bit?B?U8O2cmVu?= Brinkmann , Srikanth Thokala , Laurent Pinchart , Maxime Ripard , Kedareswara rao Appana , dmaengine@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH 6/6] dmaengine: xilinx: Fix module autoload for OF platform driver Message-ID: <20150916210017.GA5933@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/dma/xilinx/xilinx_vdma.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/dma/xilinx/xilinx_vdma.c b/drivers/dma/xilinx/xilinx_vdma.c index d8434d4..6f4b501 100644 --- a/drivers/dma/xilinx/xilinx_vdma.c +++ b/drivers/dma/xilinx/xilinx_vdma.c @@ -1349,6 +1349,7 @@ static const struct of_device_id xilinx_vdma_of_ids[] = { { .compatible = "xlnx,axi-vdma-1.00.a",}, {} }; +MODULE_DEVICE_TABLE(of, xilinx_vdma_of_ids); static struct platform_driver xilinx_vdma_driver = { .driver = { -- 2.4.6