From patchwork Wed Oct 5 16:05:01 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dave Martin X-Patchwork-Id: 4529 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 E67BC23F58 for ; Wed, 5 Oct 2011 16:05:53 +0000 (UTC) Received: from mail-yx0-f180.google.com (mail-yx0-f180.google.com [209.85.213.180]) by fiordland.canonical.com (Postfix) with ESMTP id B67AAA18BC7 for ; Wed, 5 Oct 2011 16:05:53 +0000 (UTC) Received: by mail-yx0-f180.google.com with SMTP id 34so2478641yxm.11 for ; Wed, 05 Oct 2011 09:05:53 -0700 (PDT) Received: by 10.223.45.140 with SMTP id e12mr3729628faf.27.1317830753282; Wed, 05 Oct 2011 09:05:53 -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 n10cs97388laf; Wed, 5 Oct 2011 09:05:53 -0700 (PDT) Received: by 10.213.10.4 with SMTP id n4mr1235975ebn.65.1317830752601; Wed, 05 Oct 2011 09:05:52 -0700 (PDT) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx.google.com with ESMTPS id t9si1624394weq.104.2011.10.05.09.05.52 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 05 Oct 2011 09:05:52 -0700 (PDT) Received-SPF: neutral (google.com: 74.125.82.50 is neither permitted nor denied by best guess record for domain of dave.martin@linaro.org) client-ip=74.125.82.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 74.125.82.50 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-f50.google.com with SMTP id 3so2640909wwe.31 for ; Wed, 05 Oct 2011 09:05:52 -0700 (PDT) Received: by 10.216.134.106 with SMTP id r84mr3629910wei.30.1317830752334; Wed, 05 Oct 2011 09:05:52 -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.50 (version=SSLv3 cipher=OTHER); Wed, 05 Oct 2011 09:05:51 -0700 (PDT) From: Dave Martin To: linux-arm-kernel@lists.infradead.org Cc: patches@linaro.org, =?UTF-8?q?Pawe=C5=82=20Moll?= , Alessandro Zummo , rtc-linux@googlegroups.com Subject: [PATCH 10/16] rtc: pl031: Enable module alias autogeneration for AMBA drivers Date: Wed, 5 Oct 2011 17:05:01 +0100 Message-Id: <1317830707-17517-11-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 --- drivers/rtc/rtc-pl031.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/rtc/rtc-pl031.c b/drivers/rtc/rtc-pl031.c index ff1b84bd..a952c8d 100644 --- a/drivers/rtc/rtc-pl031.c +++ b/drivers/rtc/rtc-pl031.c @@ -420,6 +420,8 @@ static struct amba_id pl031_ids[] = { {0, 0}, }; +MODULE_DEVICE_TABLE(amba, pl031_ids); + static struct amba_driver pl031_driver = { .drv = { .name = "rtc-pl031",