blob: 7b5dcab5becb08ea3424db637ef65cd153d29ed6 [file] [log] [blame]
Vineet Guptac121c502013-01-18 15:12:20 +05301/*
2 * ARC FPGA Platform support code
3 *
4 * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com)
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/types.h>
12#include <linux/init.h>
13#include <linux/platform_device.h>
14
15/*
16 * Early Platform Initialization called from setup_arch()
17 */
18void __init arc_platform_early_init(void)
19{
20 pr_info("[plat-arcfpga]: registering early dev resources\n");
21}
22
23int __init fpga_plat_init(void)
24{
25 pr_info("[plat-arcfpga]: registering device resources\n");
26
27 return 0;
28}
29arch_initcall(fpga_plat_init);