]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netat/adsp_Status.c
xnu-1228.15.4.tar.gz
[apple/xnu.git] / bsd / netat / adsp_Status.c
index 505dd746ca6a36137e2da7469565873292cac4a7..4643504b9c541ee5f09ae38d3d067d27c3354a3b 100644 (file)
@@ -51,6 +51,8 @@
 #include <netat/adsp.h>
 #include <netat/adsp_internal.h>
 
+int calcSendQ(CCBPtr);
+
 /*
  * calcSendFree
  *
@@ -72,6 +74,7 @@ int CalcSendQFree(sp)         /* (CCBPtr sp) */
     return bytes;
 }
 
+int
 calcSendQ(sp)
     CCBPtr sp;
 {
@@ -79,13 +82,13 @@ calcSendQ(sp)
     int bytes = 0;
 
     if (sp->sData) {           /* There is data in buffer */
-       if (mp = sp->sbuf_mb) {
+       if ((mp = sp->sbuf_mb)) {
            do {
                bytes += gbuf_msgsize(mp);
                mp = gbuf_next(mp);
            } while (mp);
        }
-       if (mp = sp->csbuf_mb)
+       if ((mp = sp->csbuf_mb))
            bytes += gbuf_msgsize(mp);
     }
     return bytes;
@@ -112,7 +115,6 @@ int adspStatus(sp, pb)      /* (DSPPBPtr pb) */
     CCBPtr sp;
     register struct adspcmd *pb;
 {
-    short err;
     short bytes;
 
     if (sp == 0) {
@@ -147,7 +149,7 @@ int adspStatus(sp, pb)      /* (DSPPBPtr pb) */
     pb->u.statusParams.recvQFree = CalcRecvWdw(sp);
 
     pb->ioResult = 0;
-    adspioc_ack(0, pb->ioc, pb->gref);
+    adspioc_ack(0, (gbuf_t *)pb->ioc, pb->gref);
     return 0;
 
 }