staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git] / tools / testing / selftests / bpf / progs / xdp_tx.c
blob57912e7c94b0abd395e110b35d58341b2d21382f
1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/bpf.h>
4 #include "bpf_helpers.h"
6 SEC("tx")
7 int xdp_tx(struct xdp_md *xdp)
9 return XDP_TX;
12 char _license[] SEC("license") = "GPL";