From patchwork Wed Oct 5 16:04:56 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dave Martin X-Patchwork-Id: 4525 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id D93B423F58 for ; Wed, 5 Oct 2011 16:05:43 +0000 (UTC) Received: from mail-ey0-f180.google.com (mail-ey0-f180.google.com [209.85.215.180]) by fiordland.canonical.com (Postfix) with ESMTP id CF8D9A18BC7 for ; Wed, 5 Oct 2011 16:05:43 +0000 (UTC) Received: by mail-ey0-f180.google.com with SMTP id 6so2436568eyb.11 for ; Wed, 05 Oct 2011 09:05:43 -0700 (PDT) Received: by 10.223.26.26 with SMTP id b26mr1465471fac.122.1317830743681; Wed, 05 Oct 2011 09:05:43 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.23.170 with SMTP id n10cs97381laf; Wed, 5 Oct 2011 09:05:42 -0700 (PDT) Received: by 10.227.175.77 with SMTP id w13mr3215657wbz.36.1317830741632; Wed, 05 Oct 2011 09:05:41 -0700 (PDT) Received: from mail-ww0-f42.google.com (mail-ww0-f42.google.com [74.125.82.42]) by mx.google.com with ESMTPS id gd5si1616160wbb.137.2011.10.05.09.05.41 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 05 Oct 2011 09:05:41 -0700 (PDT) Received-SPF: neutral (google.com: 74.125.82.42 is neither permitted nor denied by best guess record for domain of dave.martin@linaro.org) client-ip=74.125.82.42; Authentication-Results: mx.google.com; spf=neutral (google.com: 74.125.82.42 is neither permitted nor denied by best guess record for domain of dave.martin@linaro.org) smtp.mail=dave.martin@linaro.org Received: by mail-ww0-f42.google.com with SMTP id 22so6596837wwn.1 for ; Wed, 05 Oct 2011 09:05:41 -0700 (PDT) Received: by 10.216.131.234 with SMTP id m84mr3264113wei.25.1317830739146; Wed, 05 Oct 2011 09:05:39 -0700 (PDT) Received: from e103592.peterhouse.linaro.org (fw-lnat.cambridge.arm.com. [217.140.96.63]) by mx.google.com with ESMTPS id l9sm3682771wba.5.2011.10.05.09.05.35 (version=SSLv3 cipher=OTHER); Wed, 05 Oct 2011 09:05:36 -0700 (PDT) From: Dave Martin To: linux-arm-kernel@lists.infradead.org Cc: patches@linaro.org, =?UTF-8?q?Pawe=C5=82=20Moll?= , Vinod Koul , Dan Williams , Jassi Brar Subject: [PATCH 05/16] dmaengine: pl330: Enable module alias autogeneration for AMBA drivers Date: Wed, 5 Oct 2011 17:04:56 +0100 Message-Id: <1317830707-17517-6-git-send-email-dave.martin@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1317830707-17517-1-git-send-email-dave.martin@linaro.org> References: <1317830707-17517-1-git-send-email-dave.martin@linaro.org> Signed-off-by: Dave Martin Acked-by: Jassi Brar Acked-by: Vinod Koul --- drivers/dma/pl330.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/dma/pl330.c b/drivers/dma/pl330.c index 57104147..2d8d1b0 100644 --- a/drivers/dma/pl330.c +++ b/drivers/dma/pl330.c @@ -990,6 +990,8 @@ static struct amba_id pl330_ids[] = { { 0, 0 }, }; +MODULE_DEVICE_TABLE(amba, pl330_ids); + #ifdef CONFIG_PM_RUNTIME static int pl330_runtime_suspend(struct device *dev) {