Lines Matching refs:w
122 static inline void _ne_outw(unsigned short w, void *portp) in _ne_outw() argument
124 *(volatile unsigned short *)portp = cpu_to_le16(w); in _ne_outw()
164 unsigned short w; in _inw() local
165 pcc_ioread_word(0, port, &w, sizeof(w), 1, 0); in _inw()
166 return w; in _inw()
224 void _outw(unsigned short w, unsigned long port) in _outw() argument
227 _ne_outw(w, PORT2ADDR_NE(port)); in _outw()
232 *(volatile unsigned short *)__port2addr_ata(port) = w; in _outw()
237 *(volatile unsigned short *)PORT2ADDR_USB(port) = w; in _outw()
242 pcc_iowrite_word(0, port, &w, sizeof(w), 1, 0); in _outw()
245 *(volatile unsigned short *)PORT2ADDR(port) = w; in _outw()
264 void _outw_p(unsigned short w, unsigned long port) in _outw_p() argument
266 _outw(w, port); in _outw_p()