From patchwork Wed Nov 4 06:34:04 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Grant Likely X-Patchwork-Id: 37546 X-Patchwork-Delegate: grant.likely@secretlab.ca Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from bilbo.ozlabs.org (localhost [127.0.0.1]) by ozlabs.org (Postfix) with ESMTP id 087C3B7D8C for ; Wed, 4 Nov 2009 17:34:50 +1100 (EST) Received: by ozlabs.org (Postfix) id 31CE8B7BC5; Wed, 4 Nov 2009 17:34:45 +1100 (EST) Delivered-To: linuxppc-dev@ozlabs.org Received: from mail-gx0-f228.google.com (mail-gx0-f228.google.com [209.85.217.228]) by ozlabs.org (Postfix) with ESMTP id A419AB7BC3 for ; Wed, 4 Nov 2009 17:34:43 +1100 (EST) Received: by gxk28 with SMTP id 28so699991gxk.9 for ; Tue, 03 Nov 2009 22:34:42 -0800 (PST) Received: by 10.150.130.39 with SMTP id c39mr1930493ybd.338.1257316482183; Tue, 03 Nov 2009 22:34:42 -0800 (PST) Received: from angua (S01060002b3d79728.cg.shawcable.net [68.146.87.181]) by mx.google.com with ESMTPS id 4sm305573ywi.57.2009.11.03.22.34.41 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 03 Nov 2009 22:34:41 -0800 (PST) Received: by angua (Postfix, from userid 1000) id E8A2DB8C; Tue, 3 Nov 2009 23:34:39 -0700 (MST) From: Grant Likely To: Pierre Ossman , Anton Vorontsov , linuxppc-dev@ozlabs.org, linux-kernel@vger.kernel.org Subject: [PATCH] mmc: fix missing module license declaration in of_mmc_spi.c Date: Tue, 3 Nov 2009 23:34:04 -0700 Message-Id: <1257316444-7385-1-git-send-email-grant.likely@secretlab.ca> X-Mailer: git-send-email 1.6.3.3 X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Driver cannot be used as a module without this patch. Signed-off-by: Grant Likely --- drivers/mmc/host/of_mmc_spi.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/mmc/host/of_mmc_spi.c b/drivers/mmc/host/of_mmc_spi.c index fb2921f..644f67e 100644 --- a/drivers/mmc/host/of_mmc_spi.c +++ b/drivers/mmc/host/of_mmc_spi.c @@ -22,6 +22,8 @@ #include #include +MODULE_LICENSE("GPL"); + enum { CD_GPIO = 0, WP_GPIO,