Greg Kroah-Hartman | 6f52b16 | 2017-11-01 15:08:43 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* atm_he.h */ |
| 3 | |
| 4 | #ifndef LINUX_ATM_HE_H |
| 5 | #define LINUX_ATM_HE_H |
| 6 | |
| 7 | #include <linux/atmioc.h> |
| 8 | |
| 9 | #define HE_GET_REG _IOW('a', ATMIOC_SARPRV, struct atmif_sioc) |
| 10 | |
| 11 | #define HE_REGTYPE_PCI 1 |
| 12 | #define HE_REGTYPE_RCM 2 |
| 13 | #define HE_REGTYPE_TCM 3 |
| 14 | #define HE_REGTYPE_MBOX 4 |
| 15 | |
| 16 | struct he_ioctl_reg { |
| 17 | unsigned addr, val; |
| 18 | char type; |
| 19 | }; |
| 20 | |
| 21 | #endif /* LINUX_ATM_HE_H */ |