[BACK]Return to machdep.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / arch / amiga / amiga

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

Diff for /src/sys/arch/amiga/amiga/machdep.c between version 1.87 and 1.88

version 1.87, 1997/03/30 10:38:51 version 1.88, 1997/04/02 21:50:57
Line 125 
Line 125 
 #include <netiso/iso.h>  #include <netiso/iso.h>
 #include <netiso/clnp.h>  #include <netiso/clnp.h>
 #endif  #endif
   #ifdef NETATALK
   #include <netatalk/at_extern.h>
   #endif
 #if NPPP > 0  #if NPPP > 0
 #include <net/ppp_defs.h>  #include <net/ppp_defs.h>
 #include <net/if_ppp.h>  #include <net/if_ppp.h>
Line 1343  netintr()
Line 1346  netintr()
                 ipintr();                  ipintr();
         }          }
 #endif  #endif
   #ifdef NETATALK
           if (netisr & (1 << NETISR_ATALK)) {
                   netisr &= ~(1 << NETISR_ATALK);
                   atintr();
           }
   #endif
 #ifdef NS  #ifdef NS
         if (netisr & (1 << NETISR_NS)) {          if (netisr & (1 << NETISR_NS)) {
                 netisr &= ~(1 << NETISR_NS);                  netisr &= ~(1 << NETISR_NS);

Legend:
Removed from v.1.87  
changed lines
  Added in v.1.88

CVSweb <webmaster@jp.NetBSD.org>