blob: 2786db4c32f1346e5697065337d83254a14b2478 [file] [log] [blame]
// Copyright 2019 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.
library ddk.protocol.audio;
using zx;
[Layout = "ddk-protocol"]
protocol Codec {
/// This method connects a channel in order to serve FIDL over it outside the driver host
/// control.
Connect(handle<channel> channel) -> (zx.status status);
};
protocol Dai {
/// This method connects a channel in order to serve FIDL over it outside the driver host
/// control.
Connect(handle<channel> channel) -> (zx.status status);
};