* [PATCH] msm: gpio: Mark the msm_gpiomux_config strucutres as static
@ 2011-03-29 23:04 Rohit Vaswani
0 siblings, 0 replies; only message in thread
From: Rohit Vaswani @ 2011-03-29 23:04 UTC (permalink / raw)
To: linux-arm-kernel
The msm_gpiomux_config structures are now part of the board file
and can be marked as static
Signed-off-by: Rohit Vaswani <rvaswani@codeaurora.org>
---
arch/arm/mach-msm/board-msm7x27.c | 2 +-
arch/arm/mach-msm/board-msm7x30.c | 2 +-
arch/arm/mach-msm/board-msm8x60.c | 2 +-
arch/arm/mach-msm/board-qsd8x50.c | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/arch/arm/mach-msm/board-msm7x27.c b/arch/arm/mach-msm/board-msm7x27.c
index 10affe5..c008323 100644
--- a/arch/arm/mach-msm/board-msm7x27.c
+++ b/arch/arm/mach-msm/board-msm7x27.c
@@ -45,7 +45,7 @@
#include "socinfo.h"
#include "clock.h"
-struct msm_gpiomux_config msm7x27_gpiomux_configs[NR_GPIO_IRQS] __initdata = {};
+static struct msm_gpiomux_config msm7x27_gpiomux_configs[NR_GPIO_IRQS] = {};
static struct resource smc91x_resources[] = {
[0] = {
diff --git a/arch/arm/mach-msm/board-msm7x30.c b/arch/arm/mach-msm/board-msm7x30.c
index 2cd8e9a..2b4457a 100644
--- a/arch/arm/mach-msm/board-msm7x30.c
+++ b/arch/arm/mach-msm/board-msm7x30.c
@@ -60,7 +60,7 @@ static struct msm_otg_platform_data msm_otg_pdata = {
.otg_control = OTG_PHY_CONTROL,
};
-struct msm_gpiomux_config msm7x30_uart2_configs[] __initdata = {
+static struct msm_gpiomux_config msm7x30_uart2_configs[] = {
{
.gpio = 49, /* UART2 RFR */
.settings = {
diff --git a/arch/arm/mach-msm/board-msm8x60.c b/arch/arm/mach-msm/board-msm8x60.c
index de4d8d1..56d7470 100644
--- a/arch/arm/mach-msm/board-msm8x60.c
+++ b/arch/arm/mach-msm/board-msm8x60.c
@@ -29,7 +29,7 @@
#include <mach/msm_iomap.h>
#include "gpiomux.h"
-struct msm_gpiomux_config msm8x60_gpiomux_configs[NR_GPIO_IRQS] __initdata = {};
+static struct msm_gpiomux_config msm8x60_gpiomux_configs[NR_GPIO_IRQS] = {};
static int __init gpiomux_init(void)
{
diff --git a/arch/arm/mach-msm/board-qsd8x50.c b/arch/arm/mach-msm/board-qsd8x50.c
index 83ccc0f..d65a676 100644
--- a/arch/arm/mach-msm/board-qsd8x50.c
+++ b/arch/arm/mach-msm/board-qsd8x50.c
@@ -47,7 +47,7 @@ static struct gpiomux_setting uart3_suspended = {
extern struct sys_timer msm_timer;
-struct msm_gpiomux_config qsd8x50_uart3_configs[] = {
+static struct msm_gpiomux_config qsd8x50_uart3_configs[] = {
{
.gpio = 86, /* UART3 RX */
.settings = {
--
Sent by an employee of the Qualcomm Innovation Center,Inc
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-03-29 23:04 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-29 23:04 [PATCH] msm: gpio: Mark the msm_gpiomux_config strucutres as static Rohit Vaswani
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).