1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Copyright (C) 2008 Paul Mundt 4 */ 5 #include <linux/init.h> 6 #include <linux/gpio.h> 7 #include <cpu/sh7785.h> 8 #include <mach/highlander.h> 9 10 void __init highlander_plat_pinmux_setup(void) 11 { 12 /* SCIF0 */ 13 gpio_request(GPIO_FN_SCIF0_CTS, NULL); 14 gpio_request(GPIO_FN_SCIF0_RTS, NULL); 15 gpio_request(GPIO_FN_SCIF0_SCK, NULL); 16 gpio_request(GPIO_FN_SCIF0_RXD, NULL); 17 gpio_request(GPIO_FN_SCIF0_TXD, NULL); 18 } 19
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.