Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
0002 /* atm_eni.h - Driver-specific declarations of the ENI driver (for use by
0003            driver-specific utilities) */
0004 
0005 /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
0006 
0007 
0008 #ifndef LINUX_ATM_ENI_H
0009 #define LINUX_ATM_ENI_H
0010 
0011 #include <linux/atmioc.h>
0012 
0013 
0014 struct eni_multipliers {
0015     int tx,rx;  /* values are in percent and must be > 100 */
0016 };
0017 
0018 
0019 #define ENI_MEMDUMP     _IOW('a',ATMIOC_SARPRV,struct atmif_sioc)
0020                                                 /* printk memory map */
0021 #define ENI_SETMULT _IOW('a',ATMIOC_SARPRV+7,struct atmif_sioc)
0022                         /* set buffer multipliers */
0023 
0024 #endif