atm.h 287 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* atm.h - general ATM declarations */
  3. #ifndef _LINUX_ATM_H
  4. #define _LINUX_ATM_H
  5. #include <uapi/linux/atm.h>
  6. #ifdef CONFIG_COMPAT
  7. #include <linux/compat.h>
  8. struct compat_atmif_sioc {
  9. int number;
  10. int length;
  11. compat_uptr_t arg;
  12. };
  13. #endif
  14. #endif