Lines Matching refs:bshs
406 x = readb(ahd->bshs[0].maddr + port); in ahd_inb()
408 x = inb(ahd->bshs[(port) >> 8].ioport + ((port) & 0xFF)); in ahd_inb()
421 x = readw(ahd->bshs[0].maddr + port);
423 x = inw(ahd->bshs[(port) >> 8].ioport + ((port) & 0xFF));
434 writeb(val, ahd->bshs[0].maddr + port); in ahd_outb()
436 outb(val, ahd->bshs[(port) >> 8].ioport + (port & 0xFF)); in ahd_outb()
445 writew(val, ahd->bshs[0].maddr + port); in ahd_outw_atomic()
447 outw(val, ahd->bshs[(port) >> 8].ioport + (port & 0xFF)); in ahd_outw_atomic()
1354 && ahd->bshs[0].ioport != 0) in ahd_platform_free()
1355 release_region(ahd->bshs[0].ioport, 256); in ahd_platform_free()
1357 && ahd->bshs[1].ioport != 0) in ahd_platform_free()
1358 release_region(ahd->bshs[1].ioport, 256); in ahd_platform_free()
1360 && ahd->bshs[0].maddr != NULL) { in ahd_platform_free()
1361 iounmap(ahd->bshs[0].maddr); in ahd_platform_free()