1 /* SPDX-License-Identifier: LGPL-2.1-or-later */ 2 3 #include <linux/if_arp.h> 4 5 #include "vcan.h" 6 7 const NetDevVTable vcan_vtable = { 8 .object_size = sizeof(VCan), 9 .sections = NETDEV_COMMON_SECTIONS, 10 .create_type = NETDEV_CREATE_INDEPENDENT, 11 .iftype = ARPHRD_CAN, 12 }; 13