atm_eni.h 585 B

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