diff options
| author | Ovidiu Panait <[email protected]> | 2020-11-28 10:43:14 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-01-15 14:36:12 -0500 |
| commit | eb2825b79d1e029fa0b9e9ff35fe08c2eca8ca17 (patch) | |
| tree | 5cacb986de8f06b2030518ec67fed80ec6374dba /common | |
| parent | 42d0d4223f991062f10d8b09e9268ed4cbcf271e (diff) | |
common: board_r: Drop initr_xen wrapper
Add a return value to xen_init and use it directly in the
post-relocation init sequence, rather than using a wrapper stub.
Signed-off-by: Ovidiu Panait <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'common')
| -rw-r--r-- | common/board_r.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/common/board_r.c b/common/board_r.c index 48e898b5861..a5cbbcc343f 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -428,14 +428,6 @@ static int initr_mmc(void) } #endif -#ifdef CONFIG_XEN -static int initr_xen(void) -{ - xen_init(); - return 0; -} -#endif - #ifdef CONFIG_PVBLOCK static int initr_pvblock(void) { @@ -743,7 +735,7 @@ static init_fnc_t init_sequence_r[] = { initr_mmc, #endif #ifdef CONFIG_XEN - initr_xen, + xen_init, #endif #ifdef CONFIG_PVBLOCK initr_pvblock, |
