treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / tools / testing / selftests / bpf / trace_helpers.h
blob0383c9b8adc187271af96204e62251874baccdf3
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __TRACE_HELPER_H
3 #define __TRACE_HELPER_H
5 #include <bpf/libbpf.h>
7 struct ksym {
8 long addr;
9 char *name;
12 int load_kallsyms(void);
13 struct ksym *ksym_search(long key);
14 long ksym_get_addr(const char *name);
16 #endif