blob: 574d1cad312b43baa1145319e48694f167baf9ec (
plain)
1
2
3
4
5
6
7
8
9
|
/* SPDX-License-Identifier: LGPL-2.1+ */
#include "netdev/vcan.h"
const NetDevVTable vcan_vtable = {
.object_size = sizeof(VCan),
.sections = "Match\0NetDev\0",
.create_type = NETDEV_CREATE_INDEPENDENT,
};
|