]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netat/adsp_Init.c
xnu-1228.15.4.tar.gz
[apple/xnu.git] / bsd / netat / adsp_Init.c
index 7273dd963f8c18d27d8e87a81fcc51c5cb4cced2..eb79cdf2bbe4d0da28f870b7107c282153cdbb66 100644 (file)
@@ -56,7 +56,7 @@
 #include <netat/adsp.h>
 #include <netat/adsp_internal.h>
 
-extern atlock_t adspgen_lock;
+static void InitContinue(CCBPtr, struct adspcmd *);
 
 /*
  * InitContinue
@@ -76,7 +76,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 +83,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);
+    qAddToEnd((struct qlink **)AT_ADSP_STREAMS, (struct qlink *)sp); /* Put on linked list of connections */
     return;
 }
 
@@ -162,6 +159,7 @@ int adspInit(sp, ap)                /* (DSPPBPtr pb) */
 }
 
 
+#if 0
 /*
  * AdspBad
  *
@@ -178,3 +176,5 @@ int AdspBad(ap)                     /* (DSPPBPtr pb) */
        ap->ioResult = controlErr; /* Unknown csCode in the param block */
        return EINVAL;
 }
+
+#endif