summaryrefslogtreecommitdiff
path: root/include/init.h
diff options
context:
space:
mode:
authorOvidiu Panait <ovidiu.panait@windriver.com>2020-11-28 10:43:11 +0200
committerTom Rini <trini@konsulko.com>2021-01-15 14:36:12 -0500
commitc343e8c0bfe5be18d766c25d9d1de3d843793109 (patch)
treea451438c32c194491b6798ccdad90c0fc5ed09d9 /include/init.h
parent7addd3c6df61e10e74acf0859f65a82f28b771f5 (diff)
common: board_r: Drop initr_pci_ep wrapper
Add a return value to pci_ep_init and use it directly in the post-relocation init sequence, rather than using a wrapper stub. Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/init.h')
-rw-r--r--include/init.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/init.h b/include/init.h
index 7cdc47cff1..c6c5f34b55 100644
--- a/include/init.h
+++ b/include/init.h
@@ -178,6 +178,15 @@ int setup_bdinfo(void);
int cpu_secondary_init_r(void);
/**
+ * pci_ep_init() - Initialize pci endpoint devices
+ *
+ * It is called during the generic post-relocation init sequence.
+ *
+ * Return: 0 if OK
+ */
+int pci_ep_init(void);
+
+/**
* init_cache_f_r() - Turn on the cache in preparation for relocation
*
* Return: 0 if OK, -ve on error
@@ -249,7 +258,6 @@ int set_cpu_clk_info(void);
int update_flash_size(int flash_size);
int arch_early_init_r(void);
void pci_init(void);
-void pci_ep_init(void);
int misc_init_r(void);
#if defined(CONFIG_VID)
int init_func_vid(void);