add subsys early init level (#8756)
Signed-off-by: geniusgogo <xpxyr@sina.com>
This commit is contained in:
parent
bdfa1ea20a
commit
48f83a5416
|
@ -183,7 +183,8 @@ typedef int (*init_fn_t)(void);
|
||||||
/* init platform, user code... */
|
/* init platform, user code... */
|
||||||
#define INIT_PLATFORM_EXPORT(fn) INIT_EXPORT(fn, "1.2")
|
#define INIT_PLATFORM_EXPORT(fn) INIT_EXPORT(fn, "1.2")
|
||||||
/* init sys-timer, clk, pinctrl... */
|
/* init sys-timer, clk, pinctrl... */
|
||||||
#define INIT_SUBSYS_EXPORT(fn) INIT_EXPORT(fn, "1.3")
|
#define INIT_SUBSYS_EARLY_EXPORT(fn) INIT_EXPORT(fn, "1.3.0")
|
||||||
|
#define INIT_SUBSYS_EXPORT(fn) INIT_EXPORT(fn, "1.3.1")
|
||||||
/* init early drivers */
|
/* init early drivers */
|
||||||
#define INIT_DRIVER_EARLY_EXPORT(fn) INIT_EXPORT(fn, "1.4")
|
#define INIT_DRIVER_EARLY_EXPORT(fn) INIT_EXPORT(fn, "1.4")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue