diff options
author | Richard Braun <rbraun@sceen.net> | 2018-02-20 22:57:21 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2018-02-20 22:57:21 +0100 |
commit | 326118bf300cf096cee04cb0a64789151ef8e273 (patch) | |
tree | 082660557b642253771c483b1d535e8d3f95eb75 /kern/clock.c | |
parent | da8eb9c244d27fd042adde6234ccec079681d7f4 (diff) |
Rework the initialization operations of some kernel modules
In order to avoid workarounds that check whether a module is ready or
not, break the initialization of some core modules into a bootstrap
step for basic BSP initialization, and a setup step that completes
initialization. Most users only need the bootstrap operation as a
dependency, especially since scheduling isn't enabled yet.
Diffstat (limited to 'kern/clock.c')
-rw-r--r-- | kern/clock.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kern/clock.c b/kern/clock.c index c09ffddc..c69bf428 100644 --- a/kern/clock.c +++ b/kern/clock.c @@ -61,7 +61,6 @@ clock_setup(void) } INIT_OP_DEFINE(clock_setup, - INIT_OP_DEP(boot_setup_intr, true), INIT_OP_DEP(cpu_mp_probe, true), INIT_OP_DEP(syscnt_setup, true)); |