/* atm_idt77105.h - Driver-specific declarations of the IDT77105 driver (for1* use by driver-specific utilities) */23/* Written 1999 by Greg Banks <[email protected]>. Copied from atm_suni.h. */456#ifndef LINUX_ATM_IDT77105_H7#define LINUX_ATM_IDT77105_H89#include <linux/types.h>10#include <linux/atmioc.h>11#include <linux/atmdev.h>1213/*14* Structure for IDT77105_GETSTAT and IDT77105_GETSTATZ ioctls.15* Pointed to by `arg' in atmif_sioc.16*/17struct idt77105_stats {18__u32 symbol_errors; /* wire symbol errors */19__u32 tx_cells; /* cells transmitted */20__u32 rx_cells; /* cells received */21__u32 rx_hec_errors; /* Header Error Check errors on receive */22};2324#define IDT77105_GETSTAT _IOW('a',ATMIOC_PHYPRV+2,struct atmif_sioc) /* get stats */25#define IDT77105_GETSTATZ _IOW('a',ATMIOC_PHYPRV+3,struct atmif_sioc) /* get stats and zero */2627#endif282930