Revert "tty: hvc: Fix data abort due to race in hvc_open"
[linux/fpc-iii.git] / include / net / bareudp.h
blobcb03f6f15956e63443eefebefeb00a96b3f5c759
1 /* SPDX-License-Identifier: GPL-2.0 */
3 #ifndef __NET_BAREUDP_H
4 #define __NET_BAREUDP_H
6 #include <linux/types.h>
7 #include <linux/skbuff.h>
9 struct bareudp_conf {
10 __be16 ethertype;
11 __be16 port;
12 u16 sport_min;
13 bool multi_proto_mode;
16 struct net_device *bareudp_dev_create(struct net *net, const char *name,
17 u8 name_assign_type,
18 struct bareudp_conf *info);
20 #endif