blob: dd9319246933b687b1931ac2a04324f217868d0d [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.
#include <lib/ddk/driver.h>
#include <lib/virtio/driver_utils.h>
#include <zircon/types.h>
#include "socket.h"
#include "src/devices/misc/drivers/virtio-socket/virtio_socket_bind.h"
static const zx_driver_ops_t virtio_socket_driver_ops = []() {
zx_driver_ops_t ops = {};
ops.version = DRIVER_OPS_VERSION;
ops.bind = virtio::CreateAndBind<virtio::SocketDevice>;
return ops;
}();
ZIRCON_DRIVER(virtio_socket, virtio_socket_driver_ops, "zircon", "0.1");