blob: 2674072f467e45364ec97e17ec9a6f8433e39ebb [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;
closed protocol TestDevice {
/// Call load_firmware and make sure it worked.
strict LoadFirmware(struct {
path string:MAX;
}) -> () error zx.Status;
};