pinmux-sh7724.c 571 B

123456789101112131415161718192021222324
  1. /*
  2. * SH7724 Pinmux
  3. *
  4. * Copyright (C) 2009 Renesas Solutions Corp.
  5. *
  6. * Kuninori Morimoto <morimoto.kuninori@renesas.com>
  7. *
  8. * Based on SH7723 Pinmux
  9. * Copyright (C) 2008 Magnus Damm
  10. *
  11. * This file is subject to the terms and conditions of the GNU General Public
  12. * License. See the file "COPYING" in the main directory of this archive
  13. * for more details.
  14. */
  15. #include <linux/init.h>
  16. #include <linux/kernel.h>
  17. #include <cpu/pfc.h>
  18. static int __init plat_pinmux_setup(void)
  19. {
  20. return sh_pfc_register("pfc-sh7724", NULL, 0);
  21. }
  22. arch_initcall(plat_pinmux_setup);