From patchwork Fri May 21 21:44:43 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Contreras X-Patchwork-Id: 101559 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 o4LLjVmC008745 for ; Fri, 21 May 2010 21:45:31 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753954Ab0EUVp3 (ORCPT ); Fri, 21 May 2010 17:45:29 -0400 Received: from mail-fx0-f46.google.com ([209.85.161.46]:40510 "EHLO mail-fx0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753687Ab0EUVp1 (ORCPT ); Fri, 21 May 2010 17:45:27 -0400 Received: by mail-fx0-f46.google.com with SMTP id 5so1251271fxm.19 for ; Fri, 21 May 2010 14:45:26 -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=OACPi6UehND+UCAxmPbl46DhdM3mqnXkJKDtUpOk0YaqR6OsCt+fuDZI3IwZDMc/du ruLI7Vsr9VLdIyfAmOfQPY5aVDKQIf2qPmRkdkLAd2DE3Ujvpc7/6SqrZqPhJyUztaT8 oJSB6wiLibGDzbpyLJNyY5X6wQnk1TsLbCax0= 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=DqdZPJMqtDdneH2dq0BJUSgwfBuciZp1wf/cgr2WzuzRXbis1QSN3O1O9siI5Ymnu3 TIdp/qq/pV85UdDxWjqPZDRhRLCfksI1iQo+QL2V6oLkn1vPN1clfguCKE+L/jD+2YCq qj47L9k6OLuJe3E2NUEtFcuhC8FteW5vGyu00= Received: by 10.204.80.36 with SMTP id r36mr442643bkk.75.1274478326280; Fri, 21 May 2010 14:45:26 -0700 (PDT) Received: from localhost (a91-153-253-80.elisa-laajakaista.fi [91.153.253.80]) by mx.google.com with ESMTPS id d13sm6237101bkd.23.2010.05.21.14.45.25 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 21 May 2010 14:45:25 -0700 (PDT) From: Felipe Contreras To: linux-omap Cc: linux-arm , Hiroshi Doyu , Tony Lindgren , Felipe Contreras Subject: [PATCH v2t2 11/17] omap: mailbox: trivial sync between omap1 and 2 Date: Sat, 22 May 2010 00:44:43 +0300 Message-Id: <1274478289-22188-12-git-send-email-felipe.contreras@gmail.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1274478289-22188-1-git-send-email-felipe.contreras@gmail.com> References: <1274478289-22188-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, 21 May 2010 21:45:31 +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");