1 /*
2  * Copyright (C) 2008 Paul Mundt
3  *
4  * This file is subject to the terms and conditions of the GNU General Public
5  * License.  See the file "COPYING" in the main directory of this archive
6  * for more details.
7  */
8 #include <linux/init.h>
9 #include <linux/gpio.h>
10 #include <cpu/sh7785.h>
11 
12 void __init highlander_plat_pinmux_setup(void)
13 {
14 	/* SCIF0 */
15 	gpio_request(GPIO_FN_SCIF0_CTS, NULL);
16 	gpio_request(GPIO_FN_SCIF0_RTS, NULL);
17 	gpio_request(GPIO_FN_SCIF0_SCK, NULL);
18 	gpio_request(GPIO_FN_SCIF0_RXD, NULL);
19 	gpio_request(GPIO_FN_SCIF0_TXD, NULL);
20 }
21