blob: e0813b3972af5a0891db5a1edb9d71920a959592 [file] [log] [blame]
// Copyright 2025 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@available(added=HEAD)
library fuchsia.power.cpu.manager;
type SetBoostError = strict enum : uint32 {
NOT_SUPPORTED = 0;
INTERNAL = 1;
};
@discoverable
protocol Boost {
SetBoost(struct {
enable bool;
}) -> () error SetBoostError;
};