Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) /* Copyright (C) 2013-2020  B.A.T.M.A.N. contributors:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)  * Linus Lüssing, Marek Lindner
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) #ifndef _NET_BATMAN_ADV_BAT_V_ELP_H_
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) #define _NET_BATMAN_ADV_BAT_V_ELP_H_
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) #include "main.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) #include <linux/skbuff.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) #include <linux/workqueue.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) int batadv_v_elp_iface_enable(struct batadv_hard_iface *hard_iface);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) void batadv_v_elp_iface_disable(struct batadv_hard_iface *hard_iface);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) void batadv_v_elp_iface_activate(struct batadv_hard_iface *primary_iface,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 				 struct batadv_hard_iface *hard_iface);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) void batadv_v_elp_primary_iface_set(struct batadv_hard_iface *primary_iface);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) int batadv_v_elp_packet_recv(struct sk_buff *skb,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) 			     struct batadv_hard_iface *if_incoming);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) void batadv_v_elp_throughput_metric_update(struct work_struct *work);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) #endif /* _NET_BATMAN_ADV_BAT_V_ELP_H_ */