1 // Copyright 2017 The Fuchsia Authors
2 //
3 // Use of this source code is governed by a MIT-style
4 // license that can be found in the LICENSE file or at
5 // https://opensource.org/licenses/MIT
6 
7 #include "system_priv.h"
8 
9 #include <arch/arch_ops.h>
10 #include <arch/mp.h>
11 #include <trace.h>
12 
arch_system_powerctl(uint32_t cmd,const zx_system_powerctl_arg_t * arg)13 zx_status_t arch_system_powerctl(uint32_t cmd, const zx_system_powerctl_arg_t* arg) {
14     return ZX_ERR_NOT_SUPPORTED;
15 }
16