2008-09-01 02:26:09 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2008 Travis Geiselbrecht
|
|
|
|
|
*
|
2019-07-05 17:22:23 -07:00
|
|
|
* 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
|
2008-09-01 02:26:09 -07:00
|
|
|
*/
|
2019-06-17 18:28:51 -07:00
|
|
|
#include <lk/err.h>
|
|
|
|
|
#include <lk/debug.h>
|
2008-09-01 02:26:09 -07:00
|
|
|
#include <target.h>
|
2019-06-17 18:28:51 -07:00
|
|
|
#include <lk/compiler.h>
|
2008-09-01 02:26:09 -07:00
|
|
|
|
2012-10-31 22:09:18 -07:00
|
|
|
/*
|
2008-09-01 02:26:09 -07:00
|
|
|
* default implementations of these routines, if the target code
|
|
|
|
|
* chooses not to implement.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-06-19 20:54:28 -07:00
|
|
|
__WEAK void target_early_init(void) {
|
2008-09-01 02:26:09 -07:00
|
|
|
}
|
|
|
|
|
|
2019-06-19 20:54:28 -07:00
|
|
|
__WEAK void target_init(void) {
|
2008-09-01 02:26:09 -07:00
|
|
|
}
|
|
|
|
|
|
2019-06-19 20:54:28 -07:00
|
|
|
__WEAK void target_quiesce(void) {
|
2014-08-12 16:09:09 -07:00
|
|
|
}
|
|
|
|
|
|