tag | line | file | source code |
PORT | 304 | drivers/scsi/aha152x.h | #define SETPORT(PORT, VAL) \ |
PORT | 305 | drivers/scsi/aha152x.h | outb( (VAL), (PORT) ) |
PORT | 307 | drivers/scsi/aha152x.h | #define SETPORTP(PORT, VAL) \ |
PORT | 308 | drivers/scsi/aha152x.h | outb_p( (VAL), (PORT) ) |
PORT | 310 | drivers/scsi/aha152x.h | #define SETPORTW(PORT, VAL) \ |
PORT | 311 | drivers/scsi/aha152x.h | outw( (VAL), (PORT) ) |
PORT | 313 | drivers/scsi/aha152x.h | #define GETPORT(PORT) \ |
PORT | 314 | drivers/scsi/aha152x.h | inb( PORT ) |
PORT | 316 | drivers/scsi/aha152x.h | #define GETPORTW(PORT) \ |
PORT | 317 | drivers/scsi/aha152x.h | inw( PORT ) |
PORT | 319 | drivers/scsi/aha152x.h | #define SETBITS(PORT, BITS) \ |
PORT | 320 | drivers/scsi/aha152x.h | outb( (inb(PORT) | (BITS)), (PORT) ) |
PORT | 322 | drivers/scsi/aha152x.h | #define CLRBITS(PORT, BITS) \ |
PORT | 323 | drivers/scsi/aha152x.h | outb( (inb(PORT) & ~(BITS)), (PORT) ) |
PORT | 325 | drivers/scsi/aha152x.h | #define CLRSETBITS(PORT, CLR, SET) \ |
PORT | 326 | drivers/scsi/aha152x.h | outb( (inb(PORT) & ~(CLR)) | (SET) , (PORT) ) |
PORT | 328 | drivers/scsi/aha152x.h | #define TESTHI(PORT, BITS) \ |
PORT | 329 | drivers/scsi/aha152x.h | ((inb(PORT) & (BITS)) == BITS) |
PORT | 331 | drivers/scsi/aha152x.h | #define TESTLO(PORT, BITS) \ |
PORT | 332 | drivers/scsi/aha152x.h | ((inb(PORT) & (BITS)) == 0) |