xref: /linux/include/uapi/linux/atm_eni.h (revision 498495dba268b20e8eadd7fe93c140c68b6cc9d2)
1*6f52b16cSGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2607ca46eSDavid Howells /* atm_eni.h - Driver-specific declarations of the ENI driver (for use by
3607ca46eSDavid Howells 	       driver-specific utilities) */
4607ca46eSDavid Howells 
5607ca46eSDavid Howells /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
6607ca46eSDavid Howells 
7607ca46eSDavid Howells 
8607ca46eSDavid Howells #ifndef LINUX_ATM_ENI_H
9607ca46eSDavid Howells #define LINUX_ATM_ENI_H
10607ca46eSDavid Howells 
11607ca46eSDavid Howells #include <linux/atmioc.h>
12607ca46eSDavid Howells 
13607ca46eSDavid Howells 
14607ca46eSDavid Howells struct eni_multipliers {
15607ca46eSDavid Howells 	int tx,rx;	/* values are in percent and must be > 100 */
16607ca46eSDavid Howells };
17607ca46eSDavid Howells 
18607ca46eSDavid Howells 
19607ca46eSDavid Howells #define ENI_MEMDUMP     _IOW('a',ATMIOC_SARPRV,struct atmif_sioc)
20607ca46eSDavid Howells                                                 /* printk memory map */
21607ca46eSDavid Howells #define ENI_SETMULT	_IOW('a',ATMIOC_SARPRV+7,struct atmif_sioc)
22607ca46eSDavid Howells 						/* set buffer multipliers */
23607ca46eSDavid Howells 
24607ca46eSDavid Howells #endif
25