blob: 1860dc401cf5d9371a1709cb9f2cdd754121b553 [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 fuchsia.hardware.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);
};