Lines Matching refs:value
92 void sh7751systemh_outb(unsigned char value, unsigned long port) in sh7751systemh_outb() argument
96 *(volatile unsigned char *)port = value; in sh7751systemh_outb()
98 *((unsigned char*)pci_ioaddr(port)) = value; in sh7751systemh_outb()
100 *(volatile unsigned char *)ETHER_IOMAP(port) = value; in sh7751systemh_outb()
102 *(port2adr(port)) = value; in sh7751systemh_outb()
105 void sh7751systemh_outb_p(unsigned char value, unsigned long port) in sh7751systemh_outb_p() argument
108 *(volatile unsigned char *)port = value; in sh7751systemh_outb_p()
110 *((unsigned char*)pci_ioaddr(port)) = value; in sh7751systemh_outb_p()
112 *(volatile unsigned char *)ETHER_IOMAP(port) = value; in sh7751systemh_outb_p()
114 *(port2adr(port)) = value; in sh7751systemh_outb_p()
118 void sh7751systemh_outw(unsigned short value, unsigned long port) in sh7751systemh_outw() argument
121 *(volatile unsigned short *)port = value; in sh7751systemh_outw()
123 *((unsigned short *)pci_ioaddr(port)) = value; in sh7751systemh_outw()
125 *port2adr(port) = value; in sh7751systemh_outw()
127 *(volatile unsigned short *)ETHER_IOMAP(port) = value; in sh7751systemh_outw()
132 void sh7751systemh_outl(unsigned int value, unsigned long port) in sh7751systemh_outl() argument
135 *(volatile unsigned long *)port = value; in sh7751systemh_outl()
137 *((unsigned long*)pci_ioaddr(port)) = value; in sh7751systemh_outl()