Merge tag 'kbuild-v6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy...
[linux-block.git] / include / linux / atm_tcp.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2/* atm_tcp.h - Driver-specific declarations of the ATMTCP driver (for use by
3 driver-specific utilities) */
4
5/* Written 1997-2000 by Werner Almesberger, EPFL LRC/ICA */
6
1da177e4
LT
7#ifndef LINUX_ATM_TCP_H
8#define LINUX_ATM_TCP_H
9
607ca46e 10#include <uapi/linux/atm_tcp.h>
1da177e4 11
5f10376b
JK
12struct atm_vcc;
13struct module;
1da177e4
LT
14
15struct atm_tcp_ops {
16 int (*attach)(struct atm_vcc *vcc,int itf);
17 int (*create_persistent)(int itf);
18 int (*remove_persistent)(int itf);
19 struct module *owner;
20};
21
22extern struct atm_tcp_ops atm_tcp_ops;
23
24#endif