blob: b110d1bafdb159a57297b02c3253ae4a258f282f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: LGPL-2.1+ */
/***
Copyright © 2018 Susant Sahani
***/
#include "netdev/netdevsim.h"
#include "missing.h"
const NetDevVTable netdevsim_vtable = {
.object_size = sizeof(NetDevSim),
.sections = "Match\0NetDev\0",
.create_type = NETDEV_CREATE_INDEPENDENT,
};
|