From patchwork Mon May 16 00:21:47 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Ball X-Patchwork-Id: 786882 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p4G0Jv2L027299 for ; Mon, 16 May 2011 00:19:58 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751483Ab1EPAT5 (ORCPT ); Sun, 15 May 2011 20:19:57 -0400 Received: from pullcord.laptop.org ([18.85.46.20]:37132 "EHLO pullcord.laptop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751603Ab1EPATz (ORCPT ); Sun, 15 May 2011 20:19:55 -0400 Received: from pullcord.laptop.org (localhost.localdomain [127.0.0.1]) by pullcord.laptop.org (8.14.4/8.14.4) with ESMTP id p4G0M07l008828; Sun, 15 May 2011 20:22:00 -0400 Received: (from cjb@localhost) by pullcord.laptop.org (8.14.4/8.14.4/Submit) id p4G0M0B1008827; Sun, 15 May 2011 20:22:00 -0400 From: Chris Ball To: linux-mmc@vger.kernel.org, Tony Olech Cc: Chris Ball Subject: [PATCH 5/6] mmc: vub300: MODULE_* cleanup Date: Sun, 15 May 2011 20:21:47 -0400 Message-Id: <1305505308-8767-5-git-send-email-cjb@laptop.org> X-Mailer: git-send-email 1.7.0.1 In-Reply-To: <1305505308-8767-1-git-send-email-cjb@laptop.org> References: <1305505308-8767-1-git-send-email-cjb@laptop.org> Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Mon, 16 May 2011 00:19:58 +0000 (UTC) Move the MODULE_* fields down to their usual space at the bottom of the source file, and remove a duplicated MODULE_LICENSE(). Signed-off-by: Chris Ball --- drivers/mmc/host/vub300.c | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/mmc/host/vub300.c b/drivers/mmc/host/vub300.c index 0463921..656d528 100644 --- a/drivers/mmc/host/vub300.c +++ b/drivers/mmc/host/vub300.c @@ -220,10 +220,6 @@ enum SD_RESPONSE_TYPE { #define SD_ERROR_OVERRUN 0x1B #define SD_ERROR_PIO_TIMEOUT 0x1C -MODULE_AUTHOR("Tony Olech "); -MODULE_DESCRIPTION("VUB300 USB to SD/MMC/SDIO adapter driver"); -MODULE_LICENSE("GPL"); - #define FUN(c) (0x000007 & (c->arg>>28)) #define REG(c) (0x01FFFF & (c->arg>>9)) @@ -2514,4 +2510,7 @@ static void __exit vub300_exit(void) module_init(vub300_init); module_exit(vub300_exit); + +MODULE_AUTHOR("Tony Olech "); +MODULE_DESCRIPTION("VUB300 USB to SD/MMC/SDIO adapter driver"); MODULE_LICENSE("GPL");