Fix the SYSINIT() bubble sort. This was fixed in kern_linker.c already.
This commit is contained in:
parent
87d4149e5d
commit
ee51d18b57
@ -191,7 +191,7 @@ restart:
|
||||
for (xipp = sipp + 1; *xipp; xipp++) {
|
||||
if ((*sipp)->subsystem < (*xipp)->subsystem ||
|
||||
((*sipp)->subsystem == (*xipp)->subsystem &&
|
||||
(*sipp)->order < (*xipp)->order))
|
||||
(*sipp)->order <= (*xipp)->order))
|
||||
continue; /* skip*/
|
||||
save = *sipp;
|
||||
*sipp = *xipp;
|
||||
|
Loading…
x
Reference in New Issue
Block a user