xref: /linux/include/uapi/linux/atm_eni.h (revision 607ca46e97a1b6594b29647d98a32d545c24bdff)
1*607ca46eSDavid Howells /* atm_eni.h - Driver-specific declarations of the ENI driver (for use by
2*607ca46eSDavid Howells 	       driver-specific utilities) */
3*607ca46eSDavid Howells 
4*607ca46eSDavid Howells /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
5*607ca46eSDavid Howells 
6*607ca46eSDavid Howells 
7*607ca46eSDavid Howells #ifndef LINUX_ATM_ENI_H
8*607ca46eSDavid Howells #define LINUX_ATM_ENI_H
9*607ca46eSDavid Howells 
10*607ca46eSDavid Howells #include <linux/atmioc.h>
11*607ca46eSDavid Howells 
12*607ca46eSDavid Howells 
13*607ca46eSDavid Howells struct eni_multipliers {
14*607ca46eSDavid Howells 	int tx,rx;	/* values are in percent and must be > 100 */
15*607ca46eSDavid Howells };
16*607ca46eSDavid Howells 
17*607ca46eSDavid Howells 
18*607ca46eSDavid Howells #define ENI_MEMDUMP     _IOW('a',ATMIOC_SARPRV,struct atmif_sioc)
19*607ca46eSDavid Howells                                                 /* printk memory map */
20*607ca46eSDavid Howells #define ENI_SETMULT	_IOW('a',ATMIOC_SARPRV+7,struct atmif_sioc)
21*607ca46eSDavid Howells 						/* set buffer multipliers */
22*607ca46eSDavid Howells 
23*607ca46eSDavid Howells #endif
24