1 /* 2 * Copyright (c) 2008 Travis Geiselbrecht 3 * 4 * Use of this source code is governed by a MIT-style 5 * license that can be found in the LICENSE file or at 6 * https://opensource.org/licenses/MIT 7 */ 8 #include <lk/err.h> 9 #include <lk/debug.h> 10 #include <target.h> 11 #include <lk/compiler.h> 12 13 /* 14 * default implementations of these routines, if the target code 15 * chooses not to implement. 16 */ 17 target_early_init(void)18__WEAK void target_early_init(void) { 19 } 20 target_init(void)21__WEAK void target_init(void) { 22 } 23 target_quiesce(void)24__WEAK void target_quiesce(void) { 25 } 26 27