From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261733AbVFFX5k (ORCPT ); Mon, 6 Jun 2005 19:57:40 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261789AbVFFX4x (ORCPT ); Mon, 6 Jun 2005 19:56:53 -0400 Received: from rav-az.mvista.com ([65.200.49.157]:48672 "EHLO zipcode.az.mvista.com") by vger.kernel.org with ESMTP id S261733AbVFFXwg convert rfc822-to-8bit (ORCPT ); Mon, 6 Jun 2005 19:52:36 -0400 Cc: linux-kernel@vger.kernel.org, linuxppc-embedded@ozlabs.org Subject: [PATCH][RIO] -mm: Convert EXPORT_SYMBOL -> EXPORT_SYMBOL_GPL In-Reply-To: <1118101941657@foobar.com> X-Mailer: gregkh_patchbomb Date: Mon, 6 Jun 2005 16:52:24 -0700 Message-Id: <11181019441461@foobar.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Reply-To: Matt Porter To: akpm@osdl.org Content-Transfer-Encoding: 7BIT From: Matt Porter Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Convert all core exports to EXPORT_SYMBOL_GPL. Signed-off-by: Matt Porter commit d45c2d2fedcafd50a860267ff1d517c3071ab585 tree f8ae6a1fbb746cd112ece56ec429a0f71a408afc parent 87ff3372a005e4cf927b1b62c23e1c2339d46507 author Matt Porter Mon, 06 Jun 2005 09:29:21 -0700 committer Matt Porter Mon, 06 Jun 2005 09:29:21 -0700 drivers/rio/rio-access.c | 26 +++++++++++++------------- drivers/rio/rio-driver.c | 10 +++++----- drivers/rio/rio.c | 22 +++++++++++----------- 3 files changed, 29 insertions(+), 29 deletions(-) diff --git a/drivers/rio/rio-access.c b/drivers/rio/rio-access.c --- a/drivers/rio/rio-access.c +++ b/drivers/rio/rio-access.c @@ -83,12 +83,12 @@ RIO_LOP_WRITE(8, u8, 1) RIO_LOP_WRITE(16, u16, 2) RIO_LOP_WRITE(32, u32, 4) -EXPORT_SYMBOL(__rio_local_read_config_8); -EXPORT_SYMBOL(__rio_local_read_config_16); -EXPORT_SYMBOL(__rio_local_read_config_32); -EXPORT_SYMBOL(__rio_local_write_config_8); -EXPORT_SYMBOL(__rio_local_write_config_16); -EXPORT_SYMBOL(__rio_local_write_config_32); +EXPORT_SYMBOL_GPL(__rio_local_read_config_8); +EXPORT_SYMBOL_GPL(__rio_local_read_config_16); +EXPORT_SYMBOL_GPL(__rio_local_read_config_32); +EXPORT_SYMBOL_GPL(__rio_local_write_config_8); +EXPORT_SYMBOL_GPL(__rio_local_write_config_16); +EXPORT_SYMBOL_GPL(__rio_local_write_config_32); /** * RIO_OP_READ - Generate rio_mport_read_config_* functions @@ -143,12 +143,12 @@ RIO_OP_WRITE(8, u8, 1) RIO_OP_WRITE(16, u16, 2) RIO_OP_WRITE(32, u32, 4) -EXPORT_SYMBOL(rio_mport_read_config_8); -EXPORT_SYMBOL(rio_mport_read_config_16); -EXPORT_SYMBOL(rio_mport_read_config_32); -EXPORT_SYMBOL(rio_mport_write_config_8); -EXPORT_SYMBOL(rio_mport_write_config_16); -EXPORT_SYMBOL(rio_mport_write_config_32); +EXPORT_SYMBOL_GPL(rio_mport_read_config_8); +EXPORT_SYMBOL_GPL(rio_mport_read_config_16); +EXPORT_SYMBOL_GPL(rio_mport_read_config_32); +EXPORT_SYMBOL_GPL(rio_mport_write_config_8); +EXPORT_SYMBOL_GPL(rio_mport_write_config_16); +EXPORT_SYMBOL_GPL(rio_mport_write_config_32); /** * rio_mport_send_doorbell - Send a doorbell message @@ -172,4 +172,4 @@ int rio_mport_send_doorbell(struct rio_m return res; } -EXPORT_SYMBOL(rio_mport_send_doorbell); +EXPORT_SYMBOL_GPL(rio_mport_send_doorbell); diff --git a/drivers/rio/rio-driver.c b/drivers/rio/rio-driver.c --- a/drivers/rio/rio-driver.c +++ b/drivers/rio/rio-driver.c @@ -222,8 +222,8 @@ static int __init rio_bus_init(void) postcore_initcall(rio_bus_init); -EXPORT_SYMBOL(rio_register_driver); -EXPORT_SYMBOL(rio_unregister_driver); -EXPORT_SYMBOL(rio_bus_type); -EXPORT_SYMBOL(rio_dev_get); -EXPORT_SYMBOL(rio_dev_put); +EXPORT_SYMBOL_GPL(rio_register_driver); +EXPORT_SYMBOL_GPL(rio_unregister_driver); +EXPORT_SYMBOL_GPL(rio_bus_type); +EXPORT_SYMBOL_GPL(rio_dev_get); +EXPORT_SYMBOL_GPL(rio_dev_put); diff --git a/drivers/rio/rio.c b/drivers/rio/rio.c --- a/drivers/rio/rio.c +++ b/drivers/rio/rio.c @@ -490,14 +490,14 @@ void rio_register_mport(struct rio_mport list_add_tail(&port->node, &rio_mports); } -EXPORT_SYMBOL(rio_local_get_device_id); -EXPORT_SYMBOL(rio_get_device); -EXPORT_SYMBOL(rio_get_asm); -EXPORT_SYMBOL(rio_request_inb_dbell); -EXPORT_SYMBOL(rio_release_inb_dbell); -EXPORT_SYMBOL(rio_request_outb_dbell); -EXPORT_SYMBOL(rio_release_outb_dbell); -EXPORT_SYMBOL(rio_request_inb_mbox); -EXPORT_SYMBOL(rio_release_inb_mbox); -EXPORT_SYMBOL(rio_request_outb_mbox); -EXPORT_SYMBOL(rio_release_outb_mbox); +EXPORT_SYMBOL_GPL(rio_local_get_device_id); +EXPORT_SYMBOL_GPL(rio_get_device); +EXPORT_SYMBOL_GPL(rio_get_asm); +EXPORT_SYMBOL_GPL(rio_request_inb_dbell); +EXPORT_SYMBOL_GPL(rio_release_inb_dbell); +EXPORT_SYMBOL_GPL(rio_request_outb_dbell); +EXPORT_SYMBOL_GPL(rio_release_outb_dbell); +EXPORT_SYMBOL_GPL(rio_request_inb_mbox); +EXPORT_SYMBOL_GPL(rio_release_inb_mbox); +EXPORT_SYMBOL_GPL(rio_request_outb_mbox); +EXPORT_SYMBOL_GPL(rio_release_outb_mbox);