aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mx2
diff options
context:
space:
mode:
authorHolger Schurig <hs4233@mail.mn-solutions.de>2009-03-30 09:35:39 -0400
committerSascha Hauer <s.hauer@pengutronix.de>2009-05-07 10:15:58 -0400
commitfde364742a1afec9e71e705e863d029295282fe5 (patch)
treefec36318fd215f44323db458940427c065bb0a22 /arch/arm/mach-mx2
parent1341d34ffc296f98dc84876f35f3151525dc02a2 (diff)
imx: exit functions can/should be void
Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx2')
-rw-r--r--arch/arm/mach-mx2/mx27ads.c18
-rw-r--r--arch/arm/mach-mx2/pcm038.c9
-rw-r--r--arch/arm/mach-mx2/pcm970-baseboard.c4
3 files changed, 10 insertions, 21 deletions
diff --git a/arch/arm/mach-mx2/mx27ads.c b/arch/arm/mach-mx2/mx27ads.c
index f4ad932ba24f..ab389c22f4dd 100644
--- a/arch/arm/mach-mx2/mx27ads.c
+++ b/arch/arm/mach-mx2/mx27ads.c
@@ -71,11 +71,10 @@ static int uart_mxc_port0_init(struct platform_device *pdev)
71 ARRAY_SIZE(mxc_uart0_pins), "UART0"); 71 ARRAY_SIZE(mxc_uart0_pins), "UART0");
72} 72}
73 73
74static int uart_mxc_port0_exit(struct platform_device *pdev) 74static void uart_mxc_port0_exit(struct platform_device *pdev)
75{ 75{
76 mxc_gpio_release_multiple_pins(mxc_uart0_pins, 76 mxc_gpio_release_multiple_pins(mxc_uart0_pins,
77 ARRAY_SIZE(mxc_uart0_pins)); 77 ARRAY_SIZE(mxc_uart0_pins));
78 return 0;
79} 78}
80 79
81static int mxc_uart1_pins[] = { 80static int mxc_uart1_pins[] = {
@@ -91,11 +90,10 @@ static int uart_mxc_port1_init(struct platform_device *pdev)
91 ARRAY_SIZE(mxc_uart1_pins), "UART1"); 90 ARRAY_SIZE(mxc_uart1_pins), "UART1");
92} 91}
93 92
94static int uart_mxc_port1_exit(struct platform_device *pdev) 93static void uart_mxc_port1_exit(struct platform_device *pdev)
95{ 94{
96 mxc_gpio_release_multiple_pins(mxc_uart1_pins, 95 mxc_gpio_release_multiple_pins(mxc_uart1_pins,
97 ARRAY_SIZE(mxc_uart1_pins)); 96 ARRAY_SIZE(mxc_uart1_pins));
98 return 0;
99} 97}
100 98
101static int mxc_uart2_pins[] = { 99static int mxc_uart2_pins[] = {
@@ -111,11 +109,10 @@ static int uart_mxc_port2_init(struct platform_device *pdev)
111 ARRAY_SIZE(mxc_uart2_pins), "UART2"); 109 ARRAY_SIZE(mxc_uart2_pins), "UART2");
112} 110}
113 111
114static int uart_mxc_port2_exit(struct platform_device *pdev) 112static void uart_mxc_port2_exit(struct platform_device *pdev)
115{ 113{
116 mxc_gpio_release_multiple_pins(mxc_uart2_pins, 114 mxc_gpio_release_multiple_pins(mxc_uart2_pins,
117 ARRAY_SIZE(mxc_uart2_pins)); 115 ARRAY_SIZE(mxc_uart2_pins));
118 return 0;
119} 116}
120 117
121static int mxc_uart3_pins[] = { 118static int mxc_uart3_pins[] = {
@@ -131,11 +128,10 @@ static int uart_mxc_port3_init(struct platform_device *pdev)
131 ARRAY_SIZE(mxc_uart3_pins), "UART3"); 128 ARRAY_SIZE(mxc_uart3_pins), "UART3");
132} 129}
133 130
134static int uart_mxc_port3_exit(struct platform_device *pdev) 131static void uart_mxc_port3_exit(struct platform_device *pdev)
135{ 132{
136 mxc_gpio_release_multiple_pins(mxc_uart3_pins, 133 mxc_gpio_release_multiple_pins(mxc_uart3_pins,
137 ARRAY_SIZE(mxc_uart3_pins)); 134 ARRAY_SIZE(mxc_uart3_pins));
138 return 0;
139} 135}
140 136
141static int mxc_uart4_pins[] = { 137static int mxc_uart4_pins[] = {
@@ -151,11 +147,10 @@ static int uart_mxc_port4_init(struct platform_device *pdev)
151 ARRAY_SIZE(mxc_uart4_pins), "UART4"); 147 ARRAY_SIZE(mxc_uart4_pins), "UART4");
152} 148}
153 149
154static int uart_mxc_port4_exit(struct platform_device *pdev) 150static void uart_mxc_port4_exit(struct platform_device *pdev)
155{ 151{
156 mxc_gpio_release_multiple_pins(mxc_uart4_pins, 152 mxc_gpio_release_multiple_pins(mxc_uart4_pins,
157 ARRAY_SIZE(mxc_uart4_pins)); 153 ARRAY_SIZE(mxc_uart4_pins));
158 return 0;
159} 154}
160 155
161static int mxc_uart5_pins[] = { 156static int mxc_uart5_pins[] = {
@@ -171,11 +166,10 @@ static int uart_mxc_port5_init(struct platform_device *pdev)
171 ARRAY_SIZE(mxc_uart5_pins), "UART5"); 166 ARRAY_SIZE(mxc_uart5_pins), "UART5");
172} 167}
173 168
174static int uart_mxc_port5_exit(struct platform_device *pdev) 169static void uart_mxc_port5_exit(struct platform_device *pdev)
175{ 170{
176 mxc_gpio_release_multiple_pins(mxc_uart5_pins, 171 mxc_gpio_release_multiple_pins(mxc_uart5_pins,
177 ARRAY_SIZE(mxc_uart5_pins)); 172 ARRAY_SIZE(mxc_uart5_pins));
178 return 0;
179} 173}
180 174
181static struct platform_device *platform_devices[] __initdata = { 175static struct platform_device *platform_devices[] __initdata = {
diff --git a/arch/arm/mach-mx2/pcm038.c b/arch/arm/mach-mx2/pcm038.c
index 732937ca2c9f..7f3a62e2cfcc 100644
--- a/arch/arm/mach-mx2/pcm038.c
+++ b/arch/arm/mach-mx2/pcm038.c
@@ -101,11 +101,10 @@ static int uart_mxc_port0_init(struct platform_device *pdev)
101 ARRAY_SIZE(mxc_uart0_pins), "UART0"); 101 ARRAY_SIZE(mxc_uart0_pins), "UART0");
102} 102}
103 103
104static int uart_mxc_port0_exit(struct platform_device *pdev) 104static void uart_mxc_port0_exit(struct platform_device *pdev)
105{ 105{
106 mxc_gpio_release_multiple_pins(mxc_uart0_pins, 106 mxc_gpio_release_multiple_pins(mxc_uart0_pins,
107 ARRAY_SIZE(mxc_uart0_pins)); 107 ARRAY_SIZE(mxc_uart0_pins));
108 return 0;
109} 108}
110 109
111static int mxc_uart1_pins[] = { 110static int mxc_uart1_pins[] = {
@@ -121,11 +120,10 @@ static int uart_mxc_port1_init(struct platform_device *pdev)
121 ARRAY_SIZE(mxc_uart1_pins), "UART1"); 120 ARRAY_SIZE(mxc_uart1_pins), "UART1");
122} 121}
123 122
124static int uart_mxc_port1_exit(struct platform_device *pdev) 123static void uart_mxc_port1_exit(struct platform_device *pdev)
125{ 124{
126 mxc_gpio_release_multiple_pins(mxc_uart1_pins, 125 mxc_gpio_release_multiple_pins(mxc_uart1_pins,
127 ARRAY_SIZE(mxc_uart1_pins)); 126 ARRAY_SIZE(mxc_uart1_pins));
128 return 0;
129} 127}
130 128
131static int mxc_uart2_pins[] = { PE8_PF_UART3_TXD, 129static int mxc_uart2_pins[] = { PE8_PF_UART3_TXD,
@@ -139,11 +137,10 @@ static int uart_mxc_port2_init(struct platform_device *pdev)
139 ARRAY_SIZE(mxc_uart2_pins), "UART2"); 137 ARRAY_SIZE(mxc_uart2_pins), "UART2");
140} 138}
141 139
142static int uart_mxc_port2_exit(struct platform_device *pdev) 140static void uart_mxc_port2_exit(struct platform_device *pdev)
143{ 141{
144 mxc_gpio_release_multiple_pins(mxc_uart2_pins, 142 mxc_gpio_release_multiple_pins(mxc_uart2_pins,
145 ARRAY_SIZE(mxc_uart2_pins)); 143 ARRAY_SIZE(mxc_uart2_pins));
146 return 0;
147} 144}
148 145
149static struct imxuart_platform_data uart_pdata[] = { 146static struct imxuart_platform_data uart_pdata[] = {
diff --git a/arch/arm/mach-mx2/pcm970-baseboard.c b/arch/arm/mach-mx2/pcm970-baseboard.c
index bf4e520bc1bc..16f33443efc1 100644
--- a/arch/arm/mach-mx2/pcm970-baseboard.c
+++ b/arch/arm/mach-mx2/pcm970-baseboard.c
@@ -105,11 +105,9 @@ static int pcm038_fb_init(struct platform_device *pdev)
105 ARRAY_SIZE(mxc_fb_pins), "FB"); 105 ARRAY_SIZE(mxc_fb_pins), "FB");
106} 106}
107 107
108static int pcm038_fb_exit(struct platform_device *pdev) 108static void pcm038_fb_exit(struct platform_device *pdev)
109{ 109{
110 mxc_gpio_release_multiple_pins(mxc_fb_pins, ARRAY_SIZE(mxc_fb_pins)); 110 mxc_gpio_release_multiple_pins(mxc_fb_pins, ARRAY_SIZE(mxc_fb_pins));
111
112 return 0;
113} 111}
114 112
115/* 113/*