From patchwork Fri May 14 15:01:44 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Contreras X-Patchwork-Id: 99633 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 o4EF2RZ3031862 for ; Fri, 14 May 2010 15:02:27 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755733Ab0ENPC0 (ORCPT ); Fri, 14 May 2010 11:02:26 -0400 Received: from ey-out-2122.google.com ([74.125.78.27]:31925 "EHLO ey-out-2122.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755464Ab0ENPCZ (ORCPT ); Fri, 14 May 2010 11:02:25 -0400 Received: by ey-out-2122.google.com with SMTP id d26so283220eyd.19 for ; Fri, 14 May 2010 08:02:24 -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=PL6LFXVsftY5f5x2OJn+2nociRlJek8PT9P/0d//iMA=; b=Auwhws/VCDVtDKJ86O+44jmm0Uyhim6wA0EjMl6NkzTpDfeYN54+gtoxJRQ5UnvvGp tiwKowiPbyC5cJQ28htEpTWVECfw4vdnCsKEZfOSDZVT3ijAzbMI9dHo/zuNRFLrqiRV 3ALYI5EHlenR4bE/cLY90qCobgAP7kzkGOhIQ= 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=VYfznxn41+24M8AOt82ijujr5smZBnLHEyKnrgdMNlik7qJJnqNZPgmGYEXzd1cmZR 1tYAUsS0KFN4f56ICuVN437Uy8QQKBsqSWtK49NRH3CtSTZfD14W83H+3l1HEV7MqQNw WyCe+eBpLswnJsEfj2jO+Rw0tpLExdhfG4ooo= Received: by 10.213.55.2 with SMTP id s2mr432456ebg.14.1273849344552; Fri, 14 May 2010 08:02:24 -0700 (PDT) Received: from localhost ([192.100.124.156]) by mx.google.com with ESMTPS id 14sm1335062ewy.10.2010.05.14.08.02.23 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 14 May 2010 08:02:23 -0700 (PDT) From: Felipe Contreras To: linux-omap Cc: linux-arm , Hiroshi Doyu , Tony Lindgren , Russell King , Felipe Contreras Subject: [PATCH v2 11/17] omap: mailbox: trivial sync between omap1 and 2 Date: Fri, 14 May 2010 18:01:44 +0300 Message-Id: <1273849310-32169-12-git-send-email-felipe.contreras@gmail.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1273849310-32169-1-git-send-email-felipe.contreras@gmail.com> References: <1273849310-32169-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]); Fri, 14 May 2010 15:02:27 +0000 (UTC) diff --git a/arch/arm/mach-omap1/mailbox.c b/arch/arm/mach-omap1/mailbox.c index 8c1b83f..91780a0 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 4f3b84e..adbf5d7 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 @@ -475,7 +473,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", }, }; @@ -560,4 +558,4 @@ MODULE_LICENSE("GPL v2"); MODULE_DESCRIPTION("omap mailbox: omap2/3/4 architecture specific functions"); MODULE_AUTHOR("Hiroshi DOYU "); MODULE_AUTHOR("Paul Mundt"); -MODULE_ALIAS("platform:"DRV_NAME); +MODULE_ALIAS("platform:omap2-mailbox");