pinmux-sh7269.c 495 B

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