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) /* net/atm/signaling.h - ATM signaling */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
^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_ATM_SIGNALING_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) #define NET_ATM_SIGNALING_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) #include <linux/atm.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) #include <linux/atmdev.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) #include <linux/atmsvc.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) extern struct atm_vcc *sigd; /* needed in svc_release */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19)  * sigd_enq is a wrapper for sigd_enq2, covering the more common cases, and
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20)  * avoiding huge lists of null values.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) void sigd_enq2(struct atm_vcc *vcc,enum atmsvc_msg_type type,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24)     struct atm_vcc *listen_vcc,const struct sockaddr_atmpvc *pvc,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25)     const struct sockaddr_atmsvc *svc,const struct atm_qos *qos,int reply);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) void sigd_enq(struct atm_vcc *vcc,enum atmsvc_msg_type type,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27)     struct atm_vcc *listen_vcc,const struct sockaddr_atmpvc *pvc,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28)     const struct sockaddr_atmsvc *svc);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) int sigd_attach(struct atm_vcc *vcc);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) #endif