#include <linux/etherdevice.h>
#include <linux/bitfield.h>
#include <net/dsa.h>
#include <linux/dsa/tag_qca.h>
#include "tag.h"
#define QCA_NAME …
static struct sk_buff *qca_tag_xmit(struct sk_buff *skb, struct net_device *dev)
{ … }
static struct sk_buff *qca_tag_rcv(struct sk_buff *skb, struct net_device *dev)
{ … }
static int qca_tag_connect(struct dsa_switch *ds)
{ … }
static void qca_tag_disconnect(struct dsa_switch *ds)
{ … }
static const struct dsa_device_ops qca_netdev_ops = …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;
MODULE_ALIAS_DSA_TAG_DRIVER(…);
module_dsa_tag_driver(qca_netdev_ops);