blob: bb17a957faa1d876386378184e6870d5961a9473 [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.
#include <lib/ddk/binding_driver.h>
#include <lib/ddk/driver.h>
namespace {
constexpr zx_driver_ops_t driver_ops = [] {
zx_driver_ops_t ops = {};
ops.version = DRIVER_OPS_VERSION;
return ops;
}();
} // namespace
ZIRCON_DRIVER(v1_missing_test, driver_ops, "zircon", "0.1");