mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

arch/sh/boards/mach-highlander/pinmux-r7785rp.c:9:13: warning: no previous prototype for ‘highlander_plat_pinmux_setup’ [-Wmissing-prototypes] Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Reviewed-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Link: https://lore.kernel.org/r/bbbc833d2c5b565122baaf9277ddf4a2f2cadead.1709579038.git.geert+renesas@glider.be Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
18 lines
442 B
C
18 lines
442 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2008 Paul Mundt
|
|
*/
|
|
#include <linux/init.h>
|
|
#include <linux/gpio.h>
|
|
#include <cpu/sh7785.h>
|
|
#include <mach/highlander.h>
|
|
|
|
void __init highlander_plat_pinmux_setup(void)
|
|
{
|
|
/* SCIF0 */
|
|
gpio_request(GPIO_FN_SCIF0_CTS, NULL);
|
|
gpio_request(GPIO_FN_SCIF0_RTS, NULL);
|
|
gpio_request(GPIO_FN_SCIF0_SCK, NULL);
|
|
gpio_request(GPIO_FN_SCIF0_RXD, NULL);
|
|
gpio_request(GPIO_FN_SCIF0_TXD, NULL);
|
|
}
|