blob: 088b9301113d93b780c3721a86b5f8359e75b2b3 [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/binding_driver.h>
#include <lib/ddk/driver.h>
#include <lib/virtio/driver_utils.h>
#include <zircon/types.h>
#include "socket.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");