kernel: remove outdated comment in _Cstart

The comment explaining why _IntLibInit was being invoked was left in
place after the invocation itself was removed.  Remove it too.

Signed-off-by: Peter A. Bigot <pab@pabigot.com>
This commit is contained in:
Peter A. Bigot 2018-12-03 10:19:27 -06:00 committed by Andrew Boie
commit 1fa00f3b36

View file

@ -455,13 +455,6 @@ FUNC_NORETURN void _Cstart(void)
(void)memset(dummy_thread_memory, 0, sizeof(dummy_thread_memory)); (void)memset(dummy_thread_memory, 0, sizeof(dummy_thread_memory));
#endif #endif
#endif #endif
/*
* The interrupt library needs to be initialized early since a series
* of handlers are installed into the interrupt table to catch
* spurious interrupts. This must be performed before other kernel
* subsystems install bonafide handlers, or before hardware device
* drivers are initialized.
*/
if (IS_ENABLED(CONFIG_LOG)) { if (IS_ENABLED(CONFIG_LOG)) {
log_core_init(); log_core_init();