minix/drivers/audio/es1371/wait.c
Kees van Reeuwijk 4faed703d9 Added a missing return statement in paired_grant().
Removed lots of unused variables.
2010-01-15 21:45:30 +00:00

28 lines
421 B
C

#include "../../drivers.h"
#include <sys/types.h>
#include "pci_helper.h"
int WaitBitd (int paddr, int bitno, int state, long tmout)
{
unsigned long mask;
mask = 1UL << bitno;
tmout *= 5000;
if(state) {
while(tmout-- > 0) {
if(pci_inl(paddr) & mask) {
return 0;
}
}
} else {
while(tmout-- > 0) {
if(!(pci_inl(paddr) & mask)) {
return 0;
}
}
}
return 0;
}