25 lines · c
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */2/* atm_eni.h - Driver-specific declarations of the ENI driver (for use by3 driver-specific utilities) */4 5/* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */6 7 8#ifndef LINUX_ATM_ENI_H9#define LINUX_ATM_ENI_H10 11#include <linux/atmioc.h>12 13 14struct eni_multipliers {15 int tx,rx; /* values are in percent and must be > 100 */16};17 18 19#define ENI_MEMDUMP _IOW('a',ATMIOC_SARPRV,struct atmif_sioc)20 /* printk memory map */21#define ENI_SETMULT _IOW('a',ATMIOC_SARPRV+7,struct atmif_sioc)22 /* set buffer multipliers */23 24#endif25