Files
linux-apfs/arch/sh/kernel/cpu/sh2a/pinmux-sh7264.c
T

20 lines
459 B
C
Raw Normal View History

2012-05-09 07:59:29 +01:00
/*
* SH7264 Pinmux
*
* Copyright (C) 2012 Renesas Electronics Europe Ltd
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*/
#include <linux/init.h>
#include <linux/kernel.h>
2012-12-15 23:51:06 +01:00
#include <cpu/pfc.h>
2012-05-09 07:59:29 +01:00
static int __init plat_pinmux_setup(void)
{
return sh_pfc_register("pfc-sh7264", NULL, 0);
2012-05-09 07:59:29 +01:00
}
arch_initcall(plat_pinmux_setup);