blob: f3f99fd07bcd0ae160efa7a09e412918157e37e4 [file] [log] [blame]
// Copyright 2021 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.
#ifndef SRC_DEVICES_MISC_DRIVERS_COMPAT_V1_TEST_H_
#define SRC_DEVICES_MISC_DRIVERS_COMPAT_V1_TEST_H_
#include <lib/ddk/driver.h>
#include <zircon/types.h>
#include <mutex>
struct V1Test {
zx_status_t status = ZX_OK;
bool did_bind = false;
bool did_create = false;
bool did_release = false;
zx_device_t* zxdev = nullptr;
};
#endif // SRC_DEVICES_MISC_DRIVERS_COMPAT_V1_TEST_H_