commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
31 lines
698 B
C
31 lines
698 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _BPF_LIRC_H
|
|
#define _BPF_LIRC_H
|
|
|
|
#include <uapi/linux/bpf.h>
|
|
|
|
#ifdef CONFIG_BPF_LIRC_MODE2
|
|
int lirc_prog_attach(const union bpf_attr *attr, struct bpf_prog *prog);
|
|
int lirc_prog_detach(const union bpf_attr *attr);
|
|
int lirc_prog_query(const union bpf_attr *attr, union bpf_attr __user *uattr);
|
|
#else
|
|
static inline int lirc_prog_attach(const union bpf_attr *attr,
|
|
struct bpf_prog *prog)
|
|
{
|
|
return -EINVAL;
|
|
}
|
|
|
|
static inline int lirc_prog_detach(const union bpf_attr *attr)
|
|
{
|
|
return -EINVAL;
|
|
}
|
|
|
|
static inline int lirc_prog_query(const union bpf_attr *attr,
|
|
union bpf_attr __user *uattr)
|
|
{
|
|
return -EINVAL;
|
|
}
|
|
#endif
|
|
|
|
#endif /* _BPF_LIRC_H */
|