// SPDX-License-Identifier: GPL-2.01/*2* SH Pin Function Control Initialization3*4* Copyright (C) 2012 Renesas Solutions Corp.5*/67#include <linux/init.h>8#include <linux/platform_device.h>910#include <cpu/pfc.h>1112static struct platform_device sh_pfc_device = {13.id = -1,14};1516int __init sh_pfc_register(const char *name,17struct resource *resource, u32 num_resources)18{19sh_pfc_device.name = name;20sh_pfc_device.num_resources = num_resources;21sh_pfc_device.resource = resource;2223return platform_device_register(&sh_pfc_device);24}252627