From patchwork Fri Jun 12 23:50:59 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan McDowell X-Patchwork-Id: 30004 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n5CNp2rv024023 for ; Fri, 12 Jun 2009 23:51:02 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751165AbZFLXu6 (ORCPT ); Fri, 12 Jun 2009 19:50:58 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751604AbZFLXu6 (ORCPT ); Fri, 12 Jun 2009 19:50:58 -0400 Received: from the.earth.li ([217.147.81.2]:57127 "EHLO the.earth.li" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751165AbZFLXu5 (ORCPT ); Fri, 12 Jun 2009 19:50:57 -0400 Received: from noodles by the.earth.li with local (Exim 4.69) (envelope-from ) id 1MFGWR-0007WC-RN; Sat, 13 Jun 2009 00:50:59 +0100 Date: Sat, 13 Jun 2009 00:50:59 +0100 From: Jonathan McDowell To: linux-omap@vger.kernel.org Cc: Hiroshi.DOYU@nokia.com Subject: [TRIVIAL PATCH] Fix compilation of arch/arm/mach-omap1/mailbox.c Message-ID: <20090612235059.GJ6704@earth.li> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org This fixes the positioning of " in MODULE_AUTHOR, which is currently causing a build failure on latest git with CONFIG_OMAP_MBOX_FWK=m; the original breakage appears to date from the end of last year in a5abbbe52b7e89a7633319c5417bd4331f7ac8ed Signed-Off-By: Jonathan McDowell ----- ----- J. diff --git a/arch/arm/mach-omap1/mailbox.c b/arch/arm/mach-omap1/mailbox.c index 0af4d6c..6810b4a 100644 --- a/arch/arm/mach-omap1/mailbox.c +++ b/arch/arm/mach-omap1/mailbox.c @@ -203,5 +203,5 @@ module_exit(omap1_mbox_exit); MODULE_LICENSE("GPL v2"); MODULE_DESCRIPTION("omap mailbox: omap1 architecture specific functions"); -MODULE_AUTHOR("Hiroshi DOYU" ); +MODULE_AUTHOR("Hiroshi DOYU "); MODULE_ALIAS("platform:omap1-mailbox");