Vineet Gupta | c121c50 | 2013-01-18 15:12:20 +0530 | [diff] [blame^] | 1 | /* |
| 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 | */ |
| 18 | void __init arc_platform_early_init(void) |
| 19 | { |
| 20 | pr_info("[plat-arcfpga]: registering early dev resources\n"); |
| 21 | } |
| 22 | |
| 23 | int __init fpga_plat_init(void) |
| 24 | { |
| 25 | pr_info("[plat-arcfpga]: registering device resources\n"); |
| 26 | |
| 27 | return 0; |
| 28 | } |
| 29 | arch_initcall(fpga_plat_init); |