root/net/drv/we8003/we8003.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 /*
   2  * we8003.h     Define the interface of the WE8003 Ethernet driver.
   3  *
   4  * Version:     @(#)we8003.h    1.0.0   (02/11/93)
   5  *
   6  * Author:      Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
   7  */
   8 #ifndef _LINUX_WE8003_H
   9 #define _LINUX_WE8003_H
  10 
  11 
  12 #define CONF_WE8003     0               /* add this driver to kernel    */
  13 #define FORCE_8BIT      0               /* for forcing the WD8003 mode  */
  14 
  15 
  16 #define WE_DEBUG
  17 #ifdef  WE_DEBUG
  18 #   define PRINTK(x)    printk x
  19 #else
  20 #   define PRINTK(x)    /**/
  21 #endif
  22 
  23 
  24 #define NR_WE8003       4               /* max number of units          */
  25 #define WE_NAME         "WE8003.%d"     /* our DDI ID string            */
  26 
  27 
  28 extern struct ddi_device *we_ptrs[NR_WE8003];   /* pointers to DDI blocks       */
  29 
  30 
  31 extern int      we8003_init(struct ddi_device *dev);
  32 
  33 #endif  /* _LINUX_WE8003_H */

/* [previous][next][first][last][top][bottom][index][help] */