2024-09-09 08:52:07 +00:00
|
|
|
/* atm.h - general ATM declarations */
|
|
|
|
#ifndef _LINUX_ATM_H
|
|
|
|
#define _LINUX_ATM_H
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#include <uapi/linux/atm.h>
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
#include <linux/compat.h>
|
|
|
|
struct compat_atmif_sioc {
|
|
|
|
int number;
|
|
|
|
int length;
|
|
|
|
compat_uptr_t arg;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|