Lines Matching refs:w
107 static inline void _ne_outw(unsigned short w, void *portp) in _ne_outw() argument
109 *(volatile unsigned short *)portp = cpu_to_le16(w); in _ne_outw()
148 unsigned short w; in _inw() local
149 pcc_ioread_word(0, port, &w, sizeof(w), 1, 0); in _inw()
150 return w; in _inw()
207 void _outw(unsigned short w, unsigned long port) in _outw() argument
210 _ne_outw(w, PORT2ADDR_NE(port)); in _outw()
214 *(volatile unsigned short *)__port2addr_ata(port) = w; in _outw()
219 *(volatile unsigned short *)PORT2ADDR_USB(port) = w; in _outw()
224 pcc_iowrite_word(0, port, &w, sizeof(w), 1, 0); in _outw()
227 *(volatile unsigned short *)PORT2ADDR(port) = w; in _outw()
246 void _outw_p(unsigned short w, unsigned long port) in _outw_p() argument
248 _outw(w, port); in _outw_p()