xref: /minix3/minix/drivers/audio/es1371/wait.h (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1*433d6423SLionel Sambuc #ifndef WAIT_H
2*433d6423SLionel Sambuc #define WAIT_H
3*433d6423SLionel Sambuc /* WAIT.H
4*433d6423SLionel Sambuc // General purpose waiting routines
5*433d6423SLionel Sambuc 
6*433d6423SLionel Sambuc // Function prototypes
7*433d6423SLionel Sambuc */
8*433d6423SLionel Sambuc int WaitBitb (int paddr, int bitno, int state, long tmout);
9*433d6423SLionel Sambuc int WaitBitw (int paddr, int bitno, int state, long tmout);
10*433d6423SLionel Sambuc int WaitBitd (int paddr, int bitno, int state, long tmout);
11*433d6423SLionel Sambuc int MemWaitw (unsigned int volatile *gaddr, int bitno, int state, long tmout);
12*433d6423SLionel Sambuc 
13*433d6423SLionel Sambuc #endif
14