Files
lk/target/init.c

27 lines
504 B
C
Raw Normal View History

/*
* Copyright (c) 2008 Travis Geiselbrecht
*
* Use of this source code is governed by a MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT
*/
#include <lk/err.h>
#include <lk/debug.h>
#include <target.h>
#include <lk/compiler.h>
2012-10-31 22:09:18 -07:00
/*
* default implementations of these routines, if the target code
* chooses not to implement.
*/
__WEAK void target_early_init(void) {
}
__WEAK void target_init(void) {
}
__WEAK void target_quiesce(void) {
}