pinmux-sh7264.c 459 B

12345678910111213141516171819
  1. /*
  2. * SH7264 Pinmux
  3. *
  4. * Copyright (C) 2012 Renesas Electronics Europe Ltd
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. */
  10. #include <linux/init.h>
  11. #include <linux/kernel.h>
  12. #include <cpu/pfc.h>
  13. static int __init plat_pinmux_setup(void)
  14. {
  15. return sh_pfc_register("pfc-sh7264", NULL, 0);
  16. }
  17. arch_initcall(plat_pinmux_setup);