X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/89b3af67bb32e691275bf6fa803d1834b2284115..e2fac8b15b12a7979f72090454d850e612fc5b13:/bsd/netat/adsp_Init.c?ds=sidebyside diff --git a/bsd/netat/adsp_Init.c b/bsd/netat/adsp_Init.c index 6c7895cb2..eb79cdf2b 100644 --- a/bsd/netat/adsp_Init.c +++ b/bsd/netat/adsp_Init.c @@ -56,6 +56,7 @@ #include #include +static void InitContinue(CCBPtr, struct adspcmd *); /* * InitContinue @@ -82,7 +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. */ - qAddToEnd(AT_ADSP_STREAMS, sp); /* Put on linked list of connections */ + qAddToEnd((struct qlink **)AT_ADSP_STREAMS, (struct qlink *)sp); /* Put on linked list of connections */ return; } @@ -158,6 +159,7 @@ int adspInit(sp, ap) /* (DSPPBPtr pb) */ } +#if 0 /* * AdspBad * @@ -174,3 +176,5 @@ int AdspBad(ap) /* (DSPPBPtr pb) */ ap->ioResult = controlErr; /* Unknown csCode in the param block */ return EINVAL; } + +#endif