]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netat/adsp_Init.c
xnu-792.18.15.tar.gz
[apple/xnu.git] / bsd / netat / adsp_Init.c
index 7273dd963f8c18d27d8e87a81fcc51c5cb4cced2..6c7895cb2182d7c4a6ca6f3b1cab1660d8c7f3e6 100644 (file)
@@ -56,7 +56,6 @@
 #include <netat/adsp.h>
 #include <netat/adsp_internal.h>
 
-extern atlock_t adspgen_lock;
 
 /*
  * InitContinue
@@ -76,7 +75,6 @@ static void InitContinue(sp, pb) /* (CCBPtr sp, DSPPBPtr pb, int soc) */
     CCBPtr sp;
     struct adspcmd *pb;
 {
-    int s;
 
     /* Save connection's socket # in CCB */
     sp->localSocket = pb->socket; 
@@ -84,9 +82,7 @@ static void InitContinue(sp, pb) /* (CCBPtr sp, DSPPBPtr pb, int soc) */
     /*
      * Link the new ccb onto queue.  Must be done with interrupts off.
      */
-    ATDISABLE(s, adspgen_lock);
     qAddToEnd(AT_ADSP_STREAMS, sp); /* Put on linked list of connections */
-    ATENABLE(s, adspgen_lock);
     return;
 }