diff options
Diffstat (limited to 'arch/blackfin/mach-bf548/include/mach/bfin_serial_5xx.h')
-rw-r--r-- | arch/blackfin/mach-bf548/include/mach/bfin_serial_5xx.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/arch/blackfin/mach-bf548/include/mach/bfin_serial_5xx.h b/arch/blackfin/mach-bf548/include/mach/bfin_serial_5xx.h index c05e79cba257..388e2328aeba 100644 --- a/arch/blackfin/mach-bf548/include/mach/bfin_serial_5xx.h +++ b/arch/blackfin/mach-bf548/include/mach/bfin_serial_5xx.h | |||
@@ -181,48 +181,3 @@ struct bfin_serial_res bfin_serial_resource[] = { | |||
181 | }; | 181 | }; |
182 | 182 | ||
183 | #define DRIVER_NAME "bfin-uart" | 183 | #define DRIVER_NAME "bfin-uart" |
184 | |||
185 | static void bfin_serial_hw_init(struct bfin_serial_port *uart) | ||
186 | { | ||
187 | #ifdef CONFIG_SERIAL_BFIN_UART0 | ||
188 | peripheral_request(P_UART0_TX, DRIVER_NAME); | ||
189 | peripheral_request(P_UART0_RX, DRIVER_NAME); | ||
190 | #endif | ||
191 | |||
192 | #ifdef CONFIG_SERIAL_BFIN_UART1 | ||
193 | peripheral_request(P_UART1_TX, DRIVER_NAME); | ||
194 | peripheral_request(P_UART1_RX, DRIVER_NAME); | ||
195 | |||
196 | #ifdef CONFIG_BFIN_UART1_CTSRTS | ||
197 | peripheral_request(P_UART1_RTS, DRIVER_NAME); | ||
198 | peripheral_request(P_UART1_CTS, DRIVER_NAME); | ||
199 | #endif | ||
200 | #endif | ||
201 | |||
202 | #ifdef CONFIG_SERIAL_BFIN_UART2 | ||
203 | peripheral_request(P_UART2_TX, DRIVER_NAME); | ||
204 | peripheral_request(P_UART2_RX, DRIVER_NAME); | ||
205 | #endif | ||
206 | |||
207 | #ifdef CONFIG_SERIAL_BFIN_UART3 | ||
208 | peripheral_request(P_UART3_TX, DRIVER_NAME); | ||
209 | peripheral_request(P_UART3_RX, DRIVER_NAME); | ||
210 | |||
211 | #ifdef CONFIG_BFIN_UART3_CTSRTS | ||
212 | peripheral_request(P_UART3_RTS, DRIVER_NAME); | ||
213 | peripheral_request(P_UART3_CTS, DRIVER_NAME); | ||
214 | #endif | ||
215 | #endif | ||
216 | SSYNC(); | ||
217 | #ifdef CONFIG_SERIAL_BFIN_CTSRTS | ||
218 | if (uart->cts_pin >= 0) { | ||
219 | gpio_request(uart->cts_pin, DRIVER_NAME); | ||
220 | gpio_direction_input(uart->cts_pin); | ||
221 | } | ||
222 | |||
223 | if (uart->rts_pin >= 0) { | ||
224 | gpio_request(uart->rts_pin, DRIVER_NAME); | ||
225 | gpio_direction_output(uart->rts_pin, 0); | ||
226 | } | ||
227 | #endif | ||
228 | } | ||