[BACK]Return to if_tl.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / dev / pci

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/dev/pci/if_tl.c between version 1.6 and 1.7

version 1.6, 1997/11/18 12:26:09 version 1.7, 1997/11/30 15:18:58
Line 164  typedef u_long ioctl_cmd_t;
Line 164  typedef u_long ioctl_cmd_t;
         bus_space_write_1(sc->tl_bustag, sc->tl_bushandle, (reg), (data))          bus_space_write_1(sc->tl_bustag, sc->tl_bushandle, (reg), (data))
 #define ETHER_MIN_TX (ETHERMIN + sizeof(struct ether_header))  #define ETHER_MIN_TX (ETHERMIN + sizeof(struct ether_header))
   
   #ifdef __BROKEN_INDIRECT_CONFIG
 static int tl_pci_match __P((struct device *, void *, void *));  static int tl_pci_match __P((struct device *, void *, void *));
   #else
   static int tl_pci_match __P((struct device *, struct cfdata *, void *));
   #endif
 static void tl_pci_attach __P((struct device *, struct device *, void *));  static void tl_pci_attach __P((struct device *, struct device *, void *));
 static int tl_intr __P((void *));  static int tl_intr __P((void *));
   
Line 308  static char *nullbuf = NULL;
Line 312  static char *nullbuf = NULL;
 static int  static int
 tl_pci_match(parent, match, aux)  tl_pci_match(parent, match, aux)
         struct device *parent;          struct device *parent;
   #ifdef __BROKEN_INDIRECT_CONFIG
         void *match;          void *match;
   #else
           struct cfdata *match;
   #endif
         void *aux;          void *aux;
 {  {
         struct pci_attach_args *pa = (struct pci_attach_args *) aux;          struct pci_attach_args *pa = (struct pci_attach_args *) aux;

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

CVSweb <webmaster@jp.NetBSD.org>