From patchwork Thu May 13 17:47:31 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Contreras X-Patchwork-Id: 99363 X-Patchwork-Delegate: hiroshi.doyu@nokia.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o4DHmplK012016 for ; Thu, 13 May 2010 17:48:51 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758634Ab0EMRst (ORCPT ); Thu, 13 May 2010 13:48:49 -0400 Received: from fg-out-1718.google.com ([72.14.220.155]:64611 "EHLO fg-out-1718.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753870Ab0EMRss (ORCPT ); Thu, 13 May 2010 13:48:48 -0400 Received: by fg-out-1718.google.com with SMTP id d23so1239991fga.1 for ; Thu, 13 May 2010 10:48:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer:in-reply-to:references; bh=UV86f4TRhPzYx5Ps9KuSCW8yBeW+jpRNocSKS7MQEYA=; b=sQc2aZYEzVzdq0DxmAArotidhe8b5eVTWhDZARDq2zpxYUab3rVwrp8A9/mSQGRhhQ x1fC68DkjiqW3tkcUL0M5AJHefezMFtorv3io5xea3VZiPQai0btP+QzwlHpCwZrK3rG dJ9uqGh44cFyGwp9ndGXHPJTeKCwYiCTN5drs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=n66ktZELKVmtqGHe73KOQ/Ma0goFy7x9vZU46DWogYXEJdxxAWGJN7DOBA48Ty+9jV L5x5ax+7ilnlx/0Zuhi/QPR3nlViqmUS+uSt960DrJmxpt4VlJdFgcYuw3nx5nn3QnuQ FpcL7BSmDxF7QdR1QRdy29di2n4nK2VIrVOcY= Received: by 10.87.38.3 with SMTP id q3mr1086216fgj.26.1273772927333; Thu, 13 May 2010 10:48:47 -0700 (PDT) Received: from localhost (a91-153-253-80.elisa-laajakaista.fi [91.153.253.80]) by mx.google.com with ESMTPS id l12sm11861415fgb.2.2010.05.13.10.48.46 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 13 May 2010 10:48:46 -0700 (PDT) From: Felipe Contreras To: linux-omap Cc: linux-arm , Hiroshi Doyu , Tony Lindgren , Russell King , Felipe Contreras Subject: [PATCH 10/15] omap: mailbox: trivial sync between omap1 and 2 Date: Thu, 13 May 2010 20:47:31 +0300 Message-Id: <1273772856-10881-11-git-send-email-felipe.contreras@gmail.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1273772856-10881-1-git-send-email-felipe.contreras@gmail.com> References: <1273772856-10881-1-git-send-email-felipe.contreras@gmail.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Thu, 13 May 2010 17:48:51 +0000 (UTC) diff --git a/arch/arm/mach-omap1/mailbox.c b/arch/arm/mach-omap1/mailbox.c index d57fb5d..64c1dc2 100644 --- a/arch/arm/mach-omap1/mailbox.c +++ b/arch/arm/mach-omap1/mailbox.c @@ -1,5 +1,5 @@ /* - * Mailbox reservation modules for DSP + * Mailbox reservation modules for OMAP1 * * Copyright (C) 2006-2009 Nokia Corporation * Written by: Hiroshi DOYU diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c index cea18bc..941ee30 100644 --- a/arch/arm/mach-omap2/mailbox.c +++ b/arch/arm/mach-omap2/mailbox.c @@ -18,8 +18,6 @@ #include #include -#define DRV_NAME "omap2-mailbox" - #define MAILBOX_REVISION 0x000 #define MAILBOX_SYSCONFIG 0x010 #define MAILBOX_SYSSTATUS 0x014 @@ -454,7 +452,7 @@ static struct platform_driver omap2_mbox_driver = { .probe = omap2_mbox_probe, .remove = __devexit_p(omap2_mbox_remove), .driver = { - .name = DRV_NAME, + .name = "omap2-mailbox", }, }; @@ -539,4 +537,4 @@ module_exit(omap2_mbox_exit); MODULE_LICENSE("GPL v2"); MODULE_DESCRIPTION("omap mailbox: omap2/3/4 architecture specific functions"); MODULE_AUTHOR("Hiroshi DOYU , Paul Mundt"); -MODULE_ALIAS("platform:"DRV_NAME); +MODULE_ALIAS("platform:omap2-mailbox");