atm_eni.h 648 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /* atm_eni.h - Driver-specific declarations of the ENI driver (for use by
  3. driver-specific utilities) */
  4. /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
  5. #ifndef LINUX_ATM_ENI_H
  6. #define LINUX_ATM_ENI_H
  7. #include <linux/atmioc.h>
  8. struct eni_multipliers {
  9. int tx,rx; /* values are in percent and must be > 100 */
  10. };
  11. #define ENI_MEMDUMP _IOW('a',ATMIOC_SARPRV,struct atmif_sioc)
  12. /* printk memory map */
  13. #define ENI_SETMULT _IOW('a',ATMIOC_SARPRV+7,struct atmif_sioc)
  14. /* set buffer multipliers */
  15. #endif