clk: samsung: Add bus clock for GPU/G3D on Exynos4412
[linux/fpc-iii.git] / arch / sh / kernel / cpu / pfc.c
blob062056ede88de4a7fb336601c5e802f4a1982b4c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * SH Pin Function Control Initialization
5 * Copyright (C) 2012 Renesas Solutions Corp.
6 */
8 #include <linux/init.h>
9 #include <linux/platform_device.h>
11 #include <cpu/pfc.h>
13 static struct platform_device sh_pfc_device = {
14 .id = -1,
17 int __init sh_pfc_register(const char *name,
18 struct resource *resource, u32 num_resources)
20 sh_pfc_device.name = name;
21 sh_pfc_device.num_resources = num_resources;
22 sh_pfc_device.resource = resource;
24 return platform_device_register(&sh_pfc_device);