All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jassi Brar <jassisinghbrar@gmail.com>
To: linux-kernel@vger.kernel.org
Cc: gregkh@linuxfoundation.org, s-anna@ti.com, loic.pallardy@st.com,
	lftan.linux@gmail.com, slapdau@yahoo.com.au,
	courtney.cavin@sonymobile.com, robherring2@gmail.com,
	arnd@arndb.de, joshc@codeaurora.org, linus.walleij@linaro.org,
	galak@codeaurora.org, ks.giri@samsung.com,
	"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Subject: [PATCHv5 1/4] mailbox: rename pl320-ipc specific mailbox.h
Date: Thu, 15 May 2014 11:40:05 +0530	[thread overview]
Message-ID: <1400134205-3910-1-git-send-email-jaswinder.singh@linaro.org> (raw)
In-Reply-To: <1400134105-3847-1-git-send-email-jaswinder.singh@linaro.org>

From: Suman Anna <s-anna@ti.com>

The patch 30058677 "ARM / highbank: add support for pl320 IPC"
added a pl320 IPC specific header file as a generic mailbox.h.
This file has been renamed appropriately to allow the
introduction of the generic mailbox API framework.

Acked-by: Mark Langsdorf <mark.langsdorf@calxeda.com>
Cc: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Suman Anna <s-anna@ti.com>
---
 arch/arm/mach-highbank/highbank.c        | 2 +-
 drivers/cpufreq/highbank-cpufreq.c       | 2 +-
 drivers/mailbox/pl320-ipc.c              | 2 +-
 include/linux/{mailbox.h => pl320-ipc.h} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)
 rename include/linux/{mailbox.h => pl320-ipc.h} (100%)

diff --git a/arch/arm/mach-highbank/highbank.c b/arch/arm/mach-highbank/highbank.c
index c7de89b..f295cbb 100644
--- a/arch/arm/mach-highbank/highbank.c
+++ b/arch/arm/mach-highbank/highbank.c
@@ -20,7 +20,7 @@
 #include <linux/input.h>
 #include <linux/io.h>
 #include <linux/irqchip.h>
-#include <linux/mailbox.h>
+#include <linux/pl320-ipc.h>
 #include <linux/of.h>
 #include <linux/of_irq.h>
 #include <linux/of_platform.h>
diff --git a/drivers/cpufreq/highbank-cpufreq.c b/drivers/cpufreq/highbank-cpufreq.c
index bf8902a..b464f29 100644
--- a/drivers/cpufreq/highbank-cpufreq.c
+++ b/drivers/cpufreq/highbank-cpufreq.c
@@ -19,7 +19,7 @@
 #include <linux/cpu.h>
 #include <linux/err.h>
 #include <linux/of.h>
-#include <linux/mailbox.h>
+#include <linux/pl320-ipc.h>
 #include <linux/platform_device.h>
 
 #define HB_CPUFREQ_CHANGE_NOTE	0x80000001
diff --git a/drivers/mailbox/pl320-ipc.c b/drivers/mailbox/pl320-ipc.c
index d873cba..f3755e0 100644
--- a/drivers/mailbox/pl320-ipc.c
+++ b/drivers/mailbox/pl320-ipc.c
@@ -26,7 +26,7 @@
 #include <linux/device.h>
 #include <linux/amba/bus.h>
 
-#include <linux/mailbox.h>
+#include <linux/pl320-ipc.h>
 
 #define IPCMxSOURCE(m)		((m) * 0x40)
 #define IPCMxDSET(m)		(((m) * 0x40) + 0x004)
diff --git a/include/linux/mailbox.h b/include/linux/pl320-ipc.h
similarity index 100%
rename from include/linux/mailbox.h
rename to include/linux/pl320-ipc.h
-- 
1.8.1.2


  reply	other threads:[~2014-05-15  6:11 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-15  6:08 [PATCHv5 0/4] Common Mailbox Framework Jassi Brar
2014-05-15  6:10 ` Jassi Brar [this message]
2014-05-15  6:11 ` [PATCHv5 2/4] mailbox: Introduce framework for mailbox Jassi Brar
2014-05-15 14:27   ` Arnd Bergmann
2014-05-16 13:33     ` Jassi Brar
2014-05-19 13:08       ` Arnd Bergmann
2014-05-19 18:03         ` Jassi Brar
2014-05-19 19:55           ` Bjorn Andersson
2014-05-19 20:01             ` Arnd Bergmann
2014-05-20 18:11             ` Jassi Brar
2014-05-29 15:43       ` Matt Porter
2014-05-30  5:31         ` Jassi Brar
2014-06-02 15:14           ` Matt Porter
2014-06-02 17:11             ` Jassi Brar
2014-06-02 22:04               ` Matt Porter
2014-06-02 22:04                 ` Matt Porter
2014-06-03  9:35               ` Sudeep Holla
2014-06-03 10:21                 ` Jassi Brar
2014-06-03 15:06                   ` Sudeep Holla
2014-06-05 11:12                   ` Matt Porter
2014-06-05 11:12                     ` Matt Porter
2014-06-05 11:39                     ` Jassi Brar
2014-06-05 11:39                       ` Jassi Brar
2014-06-11 16:07                     ` Mark Brown
2014-05-21 17:27   ` Mark Brown
2014-05-21 18:14     ` Arnd Bergmann
2014-05-28  4:20     ` Jassi Brar
2014-05-28 15:50       ` Suman Anna
2014-06-11 15:37       ` Mark Brown
2014-05-15  6:11 ` [PATCHv5 3/4] mailbox: Fix TX completion init Jassi Brar
2014-05-15  6:12 ` [PATCHv5 4/4] mailbox: Fix deleteing poll timer Jassi Brar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1400134205-3910-1-git-send-email-jaswinder.singh@linaro.org \
    --to=jassisinghbrar@gmail.com \
    --cc=arnd@arndb.de \
    --cc=courtney.cavin@sonymobile.com \
    --cc=galak@codeaurora.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=joshc@codeaurora.org \
    --cc=ks.giri@samsung.com \
    --cc=lftan.linux@gmail.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=loic.pallardy@st.com \
    --cc=rafael.j.wysocki@intel.com \
    --cc=robherring2@gmail.com \
    --cc=s-anna@ti.com \
    --cc=slapdau@yahoo.com.au \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.