tag | line | file | source code |
BITS | 337 | drivers/scsi/aha152x.h | #define SETBITS(PORT, BITS) \ |
BITS | 338 | drivers/scsi/aha152x.h | outb( (inb(PORT) | (BITS)), (PORT) ) |
BITS | 340 | drivers/scsi/aha152x.h | #define CLRBITS(PORT, BITS) \ |
BITS | 341 | drivers/scsi/aha152x.h | outb( (inb(PORT) & ~(BITS)), (PORT) ) |
BITS | 346 | drivers/scsi/aha152x.h | #define TESTHI(PORT, BITS) \ |
BITS | 347 | drivers/scsi/aha152x.h | ((inb(PORT) & (BITS)) == BITS) |
BITS | 349 | drivers/scsi/aha152x.h | #define TESTLO(PORT, BITS) \ |
BITS | 350 | drivers/scsi/aha152x.h | ((inb(PORT) & (BITS)) == 0) |