diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2012-09-17 01:44:45 (GMT) |
---|---|---|
committer | Chris Zankel <chris@zankel.net> | 2012-10-03 22:12:08 (GMT) |
commit | 5295325fbf4d48842ca1540fa7bdc51bc19e2fa6 (patch) | |
tree | 7d771614261fd05d6f0ce455d591796d95b3a14c /arch/xtensa | |
parent | 695c617ceec7954545285f1aa065edcbfe71fcee (diff) | |
download | linux-5295325fbf4d48842ca1540fa7bdc51bc19e2fa6.tar.xz |
xtensa: ISS: add platform_pcibios_init
Provide pcibios initialization function in case PCI is enabled in the
kernel config. This allows building kernel in allmodconfig
configuration.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'arch/xtensa')
-rw-r--r-- | arch/xtensa/platforms/iss/setup.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/xtensa/platforms/iss/setup.c b/arch/xtensa/platforms/iss/setup.c index f60c8cf..e7ce16b 100644 --- a/arch/xtensa/platforms/iss/setup.c +++ b/arch/xtensa/platforms/iss/setup.c @@ -38,6 +38,12 @@ void __init platform_init(bp_tag_t* bootparam) } +#ifdef CONFIG_PCI +void platform_pcibios_init(void) +{ +} +#endif + void platform_halt(void) { printk (" ** Called platform_halt(), looping forever! **\n"); |