1// Copyright 2018 The Fuchsia Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5library ddk.protocol.clk; 6 7using zx; 8 9[Layout = "ddk-protocol"] 10interface Clk { 11 Enable(uint32 index) -> (zx.status s); 12 Disable(uint32 index) -> (zx.status s); 13}; 14