1 // Copyright 2016 The Fuchsia Authors 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 <target.h> 9 10 #include <debug.h> 11 #include <err.h> 12 #include <zircon/compiler.h> 13 14 /* 15 * default implementations of these routines, if the target code 16 * chooses not to implement. 17 */ 18 target_early_init()19__WEAK void target_early_init() { 20 } 21 target_init()22__WEAK void target_init() { 23 } 24 target_quiesce()25__WEAK void target_quiesce() { 26 } 27