1 /* 2 * Copyright 2025 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #ifndef ZEPHYR_SUBSYS_DSA_TAG_PRIV_H_ 7 #define ZEPHYR_SUBSYS_DSA_TAG_PRIV_H_ 8 9 #include <zephyr/dt-bindings/ethernet/dsa_tag_proto.h> 10 #ifdef CONFIG_DSA_TAG_PROTOCOL_NETC 11 #include "dsa_tag_netc.h" 12 #endif 13 14 struct net_if *dsa_tag_recv(struct net_if *iface, struct net_pkt *pkt); 15 struct net_pkt *dsa_tag_xmit(struct net_if *iface, struct net_pkt *pkt); 16 void dsa_tag_setup(const struct device *dev_cpu); 17 18 #endif 19