Lines Matching refs:w
111 static inline void _ne_outw(unsigned short w, void *portp) in _ne_outw() argument
113 *(volatile unsigned short *)portp = cpu_to_le16(w); in _ne_outw()
152 unsigned short w; in _inw() local
153 pcc_ioread_word(0, port, &w, sizeof(w), 1, 0); in _inw()
154 return w; in _inw()
211 void _outw(unsigned short w, unsigned long port) in _outw() argument
214 _ne_outw(w, PORT2ADDR_NE(port)); in _outw()
218 *(volatile unsigned short *)__port2addr_ata(port) = w; in _outw()
223 *(volatile unsigned short *)PORT2ADDR_USB(port) = w; in _outw()
228 pcc_iowrite_word(0, port, &w, sizeof(w), 1, 0); in _outw()
231 *(volatile unsigned short *)PORT2ADDR(port) = w; in _outw()
250 void _outw_p(unsigned short w, unsigned long port) in _outw_p() argument
252 _outw(w, port); in _outw_p()