This source file includes following definitions.
- plat_pinmux_setup
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 
   9 
  10 
  11 
  12 
  13 #include <linux/bug.h>
  14 #include <linux/init.h>
  15 #include <linux/kernel.h>
  16 #include <linux/ioport.h>
  17 #include <cpu/pfc.h>
  18 
  19 static struct resource sh7786_pfc_resources[] = {
  20         [0] = {
  21                 .start  = 0xffcc0000,
  22                 .end    = 0xffcc008f,
  23                 .flags  = IORESOURCE_MEM,
  24         },
  25 };
  26 
  27 static int __init plat_pinmux_setup(void)
  28 {
  29         return sh_pfc_register("pfc-sh7786", sh7786_pfc_resources,
  30                                ARRAY_SIZE(sh7786_pfc_resources));
  31 }
  32 arch_initcall(plat_pinmux_setup);