Symbol: portman_read_status
sound/drivers/portman2x4.c
228
} while ((portman_read_status(pm) & TXEMPTY) != TXEMPTY);
sound/drivers/portman2x4.c
242
while ((portman_read_status(pm) & ESTB) == 0)
sound/drivers/portman2x4.c
248
while ((portman_read_status(pm) & ESTB) == ESTB)
sound/drivers/portman2x4.c
255
while ((portman_read_status(pm) & BUSY) == BUSY)
sound/drivers/portman2x4.c
279
while ((portman_read_status(pm) & ESTB) == ESTB)
sound/drivers/portman2x4.c
285
if ((portman_read_status(pm) & RXAVAIL) == 0)
sound/drivers/portman2x4.c
291
while ((portman_read_status(pm) & ESTB) == 0)
sound/drivers/portman2x4.c
295
midi_data = (portman_read_status(pm) & 128);
sound/drivers/portman2x4.c
300
midi_data |= (portman_read_status(pm) >> 1) & 64;
sound/drivers/portman2x4.c
305
midi_data |= (portman_read_status(pm) >> 2) & 32;
sound/drivers/portman2x4.c
310
midi_data |= (portman_read_status(pm) >> 3) & 16;
sound/drivers/portman2x4.c
315
midi_data |= (portman_read_status(pm) >> 4) & 8;
sound/drivers/portman2x4.c
320
midi_data |= (portman_read_status(pm) >> 5) & 4;
sound/drivers/portman2x4.c
325
midi_data |= (portman_read_status(pm) >> 6) & 2;
sound/drivers/portman2x4.c
330
midi_data |= (portman_read_status(pm) >> 7) & 1;
sound/drivers/portman2x4.c
339
while ((portman_read_status(pm) & ESTB) == ESTB)
sound/drivers/portman2x4.c
363
if ((portman_read_status(pm) & RXAVAIL) == RXAVAIL)
sound/drivers/portman2x4.c
400
while ((portman_read_status(pm) & ESTB) == 0)
sound/drivers/portman2x4.c
416
while ((portman_read_status(pm) & ESTB) == ESTB)
sound/drivers/portman2x4.c
592
while ((portman_read_status(pm) & INT_REQ) == INT_REQ) {