/* atm_eni.h - Driver-specific declarations of the ENI driver (for use by1driver-specific utilities) */23/* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */456#ifndef LINUX_ATM_ENI_H7#define LINUX_ATM_ENI_H89#include <linux/atmioc.h>101112struct eni_multipliers {13int tx,rx; /* values are in percent and must be > 100 */14};151617#define ENI_MEMDUMP _IOW('a',ATMIOC_SARPRV,struct atmif_sioc)18/* printk memory map */19#define ENI_SETMULT _IOW('a',ATMIOC_SARPRV+7,struct atmif_sioc)20/* set buffer multipliers */2122#endif232425