1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */ 2*4882a593Smuzhiyun /* atm_tcp.h - Driver-specific declarations of the ATMTCP driver (for use by 3*4882a593Smuzhiyun driver-specific utilities) */ 4*4882a593Smuzhiyun 5*4882a593Smuzhiyun /* Written 1997-2000 by Werner Almesberger, EPFL LRC/ICA */ 6*4882a593Smuzhiyun 7*4882a593Smuzhiyun #ifndef LINUX_ATM_TCP_H 8*4882a593Smuzhiyun #define LINUX_ATM_TCP_H 9*4882a593Smuzhiyun 10*4882a593Smuzhiyun #include <uapi/linux/atm_tcp.h> 11*4882a593Smuzhiyun 12*4882a593Smuzhiyun 13*4882a593Smuzhiyun struct atm_tcp_ops { 14*4882a593Smuzhiyun int (*attach)(struct atm_vcc *vcc,int itf); 15*4882a593Smuzhiyun int (*create_persistent)(int itf); 16*4882a593Smuzhiyun int (*remove_persistent)(int itf); 17*4882a593Smuzhiyun struct module *owner; 18*4882a593Smuzhiyun }; 19*4882a593Smuzhiyun 20*4882a593Smuzhiyun extern struct atm_tcp_ops atm_tcp_ops; 21*4882a593Smuzhiyun 22*4882a593Smuzhiyun #endif 23