blob: 2b337a2318042ac2a8bbdb91cf000045728b7303 [file] [log] [blame]
// Copyright 2018 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 <ddk/binding.h>
#include <ddk/device.h>
#include <ddk/driver.h>
#include <zircon/types.h>
#include "driver.h"
static zx_driver_ops_t wlanphy_driver_ops = {
.version = DRIVER_OPS_VERSION,
.init = wlanphy_init,
.bind = wlanphy_bind,
};
// clang-format: off
ZIRCON_DRIVER_BEGIN(wlan, wlanphy_driver_ops, "zircon", "0.1", 1)
BI_MATCH_IF(EQ, BIND_PROTOCOL, ZX_PROTOCOL_WLANPHY_IMPL),
ZIRCON_DRIVER_END(wlan)