blob: e6d2cf9ee95cfdba55c620db0a52eb14237b3625 [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.thermal;
using zx;
/// This is somewhat of a dummy protocol that's only useful for
/// connecting to the thermal driver's FIDL interface via Banjo.
[Transport = "Banjo", BanjoLayout = "ddk-protocol"]
protocol Thermal {
/// Pass a channel handle to the thermal driver to connect to its
/// FIDL interface.
Connect(zx.handle:CHANNEL chan) -> (zx.status status);
};