blob: 2df76be220c38022ee12d06a2dec2769b69a83e5 [file] [log] [blame]
// Copyright 2020 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.device.firmware.test;
using zx;
protocol TestDevice {
/// Call load_firmware and make sure it worked.
LoadFirmware(struct {
path string;
}) -> (struct {}) error zx.status;
/// Call load_firmware_async and make sure it worked.
LoadFirmwareAsync(struct {
path string;
}) -> (struct {}) error zx.status;
};