Ooops. Committed sin number 1: updating the code w/o updating the comments.

Update the comments too.
This commit is contained in:
Warner Losh 2003-10-04 18:43:21 +00:00
parent 9cd2bd7564
commit 7c9b63d96a

@ -664,7 +664,7 @@ memblk_tok(int force)
/*
* IRQ token. Must be number > 0 && < 16.
* If force is set, IRQ must exist, and can also be '?'.
* If force is set, IRQ must exist, and can also be '?' or 'any'.
*/
static int
irq_tok(int force)
@ -678,6 +678,7 @@ irq_tok(int force)
if (strcmp("?", next_tok()) == 0 && force)
return (0);
/* old PAO syntax -- people are still using it! */
if (strcmp("any", next_tok()) == 0 && force)
return (0);
pusht = 1;