shell: Fix device service module
There is a new init level SMP that was just added, and this module needs to take it into account. Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
parent
e4ddf4e761
commit
f090e2563a
1 changed files with 7 additions and 0 deletions
|
@ -17,11 +17,18 @@ extern struct device __device_POST_KERNEL_start[];
|
|||
extern struct device __device_APPLICATION_start[];
|
||||
extern struct device __device_init_end[];
|
||||
|
||||
#ifdef CONFIG_SMP
|
||||
extern struct device __device_SMP_start[];
|
||||
#endif
|
||||
|
||||
static struct device *config_levels[] = {
|
||||
__device_PRE_KERNEL_1_start,
|
||||
__device_PRE_KERNEL_2_start,
|
||||
__device_POST_KERNEL_start,
|
||||
__device_APPLICATION_start,
|
||||
#ifdef CONFIG_SMP
|
||||
__device_SMP_start,
|
||||
#endif
|
||||
/* End marker */
|
||||
__device_init_end,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue