blob: acf20357aa6f649dcc7377cc6a9f463cdbc652f3 [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_dfv1.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");