1 /* SPDX-License-Identifier: GPL-2.0 2 * 3 * SH Pin Function Control Initialization 4 * 5 * Copyright (C) 2012 Renesas Solutions Corp. 6 */ 7 8 #ifndef __ARCH_SH_CPU_PFC_H__ 9 #define __ARCH_SH_CPU_PFC_H__ 10 11 #include <linux/types.h> 12 13 struct resource; 14 15 int sh_pfc_register(const char *name, 16 struct resource *resource, u32 num_resources); 17 18 #endif /* __ARCH_SH_CPU_PFC_H__ */ 19