From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ohad Ben-Cohen Subject: [PATCH 2/7] remoteproc: remoteproc_rpmsg -> remoteproc_virtio Date: Thu, 1 Mar 2012 10:11:32 +0200 Message-ID: <1330589497-4139-3-git-send-email-ohad@wizery.com> References: <1330589497-4139-1-git-send-email-ohad@wizery.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1330589497-4139-1-git-send-email-ohad@wizery.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: Ohad Ben-Cohen , Michal Simek , Guzman Lugo Fernando , Arnd Bergmann , Iliyan Malchev , Brian Swetland , Loic PALLARDY , Rusty Russell , Stephen Boyd , Ludovic BARRE , Grant Likely , Tony Lindgren , Saravana Kannan , Clark Rob , Omar Ramirez Luna , Anna Suman , Kieran Bingham , Mark Grosen , John Williams , David Brown List-Id: linux-omap@vger.kernel.org At this point remoteproc can only register a single VIRTIO_ID_RPMSG virtio device. This limitation is going away soon: remoteproc is getting support for registering any number of virtio devices and of any type (as published by the firmware of the remote processor). Rename remoteproc_rpmsg.c to remoteproc_virtio.c in preparation of this generalization work. Signed-off-by: Ohad Ben-Cohen Cc: Brian Swetland Cc: Iliyan Malchev Cc: Arnd Bergmann Cc: Grant Likely Cc: Rusty Russell Cc: Mark Grosen Cc: John Williams Cc: Michal Simek Cc: Loic PALLARDY Cc: Ludovic BARRE Cc: Omar Ramirez Luna Cc: Guzman Lugo Fernando Cc: Anna Suman Cc: Clark Rob Cc: Stephen Boyd Cc: Saravana Kannan Cc: David Brown Cc: Kieran Bingham Cc: Tony Lindgren --- drivers/remoteproc/Makefile | 2 +- .../{remoteproc_rpmsg.c => remoteproc_virtio.c} | 0 2 files changed, 1 insertions(+), 1 deletions(-) rename drivers/remoteproc/{remoteproc_rpmsg.c => remoteproc_virtio.c} (100%) diff --git a/drivers/remoteproc/Makefile b/drivers/remoteproc/Makefile index df0897f..5445d9b 100644 --- a/drivers/remoteproc/Makefile +++ b/drivers/remoteproc/Makefile @@ -5,5 +5,5 @@ obj-$(CONFIG_REMOTEPROC) += remoteproc.o remoteproc-y := remoteproc_core.o remoteproc-y += remoteproc_debugfs.o -remoteproc-y += remoteproc_rpmsg.o +remoteproc-y += remoteproc_virtio.o obj-$(CONFIG_OMAP_REMOTEPROC) += omap_remoteproc.o diff --git a/drivers/remoteproc/remoteproc_rpmsg.c b/drivers/remoteproc/remoteproc_virtio.c similarity index 100% rename from drivers/remoteproc/remoteproc_rpmsg.c rename to drivers/remoteproc/remoteproc_virtio.c -- 1.7.5.4