File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed
Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -180,15 +180,10 @@ typedef int (*init_fn_t)(void);
180180
181181/* init cpu, memory, interrupt-controller, bus... */
182182#define INIT_CORE_EXPORT (fn ) INIT_EXPORT(fn, "1.0")
183- /* init pci/pcie, usb platform driver ... */
184- #define INIT_FRAMEWORK_EXPORT (fn ) INIT_EXPORT(fn, "1.1")
183+ /* init sys-timer, clk, pinctrl ... */
184+ #define INIT_SUBSYS_EXPORT (fn ) INIT_EXPORT(fn, "1.1")
185185/* init platform, user code... */
186186#define INIT_PLATFORM_EXPORT (fn ) INIT_EXPORT(fn, "1.2")
187- /* init sys-timer, clk, pinctrl... */
188- #define INIT_SUBSYS_EARLY_EXPORT (fn ) INIT_EXPORT(fn, "1.3.0")
189- #define INIT_SUBSYS_EXPORT (fn ) INIT_EXPORT(fn, "1.3.1")
190- /* init early drivers */
191- #define INIT_DRIVER_EARLY_EXPORT (fn ) INIT_EXPORT(fn, "1.4")
192187
193188/* pre/device/component/env/app init routines will be called in init_thread */
194189/* components pre-initialization (pure software initialization) */
Original file line number Diff line number Diff line change @@ -415,4 +415,4 @@ static int psci_drv_register(void)
415415
416416 return 0 ;
417417}
418- INIT_FRAMEWORK_EXPORT (psci_drv_register );
418+ INIT_PLATFORM_EXPORT (psci_drv_register );
You can’t perform that action at this time.
0 commit comments