unify {de,}mangle_poll(), get rid of kernel-side POLL...
[cris-mirror.git] / include / linux / atm_tcp.h
blobc8ecf6f68fb508ff6c76a3aa23192fdc1fa3dbcf
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* atm_tcp.h - Driver-specific declarations of the ATMTCP driver (for use by
3 driver-specific utilities) */
5 /* Written 1997-2000 by Werner Almesberger, EPFL LRC/ICA */
7 #ifndef LINUX_ATM_TCP_H
8 #define LINUX_ATM_TCP_H
10 #include <uapi/linux/atm_tcp.h>
13 struct atm_tcp_ops {
14 int (*attach)(struct atm_vcc *vcc,int itf);
15 int (*create_persistent)(int itf);
16 int (*remove_persistent)(int itf);
17 struct module *owner;
20 extern struct atm_tcp_ops atm_tcp_ops;
22 #endif