brintos

brintos / linux-shallow public Read only

0
0
Text · 406 B · 9f4b432 Raw
22 lines · c
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */2/* atm_he.h */3 4#ifndef LINUX_ATM_HE_H5#define LINUX_ATM_HE_H6 7#include <linux/atmioc.h>8 9#define HE_GET_REG	_IOW('a', ATMIOC_SARPRV, struct atmif_sioc)10 11#define HE_REGTYPE_PCI	112#define HE_REGTYPE_RCM	213#define HE_REGTYPE_TCM	314#define HE_REGTYPE_MBOX	415 16struct he_ioctl_reg {17	unsigned addr, val;18	char type;19};20 21#endif /* LINUX_ATM_HE_H */22