Lines Matching refs:w
70 static inline void _ne_outw(unsigned short w, void *portp) in _ne_outw() argument
72 *(volatile unsigned short *)portp = cpu_to_le16(w); in _ne_outw()
102 unsigned short w; in _inw() local
103 pcc_ioread(0, port, &w, sizeof(w), 1, 0); in _inw()
104 return w; in _inw()
106 unsigned short w; in _inw() local
107 pcc_ioread(1, port, &w, sizeof(w), 1, 0); in _inw()
108 return w; in _inw()
166 void _outw(unsigned short w, unsigned long port) in _outw() argument
169 _ne_outw(w, PORT2ADDR_NE(port)); in _outw()
173 pcc_iowrite(0, port, &w, sizeof(w), 1, 0); in _outw()
175 pcc_iowrite(1, port, &w, sizeof(w), 1, 0); in _outw()
178 *(volatile unsigned short *)PORT2ADDR(port) = w; in _outw()
199 void _outw_p(unsigned short w, unsigned long port) in _outw_p() argument
201 _outw(w, port); in _outw_p()