]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/net/stp.h
ALSA: pcm: Follow standard EXPORT_SYMBOL() declarations
[mirror_ubuntu-artful-kernel.git] / include / net / stp.h
CommitLineData
a19800d7
PM
1#ifndef _NET_STP_H
2#define _NET_STP_H
3
4struct stp_proto {
5 unsigned char group_address[ETH_ALEN];
6 void (*rcv)(const struct stp_proto *, struct sk_buff *,
7 struct net_device *);
8 void *data;
9};
10
f6982299
JP
11int stp_proto_register(const struct stp_proto *proto);
12void stp_proto_unregister(const struct stp_proto *proto);
a19800d7
PM
13
14#endif /* _NET_STP_H */