Lines Matching refs:a

46 static inline void hfa384x_outb_debug(struct net_device *dev, int a, u8 v)  in hfa384x_outb_debug()  argument
55 prism2_io_debug_add(dev, PRISM2_IO_DEBUG_CMD_OUTB, a, v); in hfa384x_outb_debug()
56 outb(v, dev->base_addr + a); in hfa384x_outb_debug()
60 static inline u8 hfa384x_inb_debug(struct net_device *dev, int a) in hfa384x_inb_debug() argument
70 v = inb(dev->base_addr + a); in hfa384x_inb_debug()
71 prism2_io_debug_add(dev, PRISM2_IO_DEBUG_CMD_INB, a, v); in hfa384x_inb_debug()
76 static inline void hfa384x_outw_debug(struct net_device *dev, int a, u16 v) in hfa384x_outw_debug() argument
85 prism2_io_debug_add(dev, PRISM2_IO_DEBUG_CMD_OUTW, a, v); in hfa384x_outw_debug()
86 outw(v, dev->base_addr + a); in hfa384x_outw_debug()
90 static inline u16 hfa384x_inw_debug(struct net_device *dev, int a) in hfa384x_inw_debug() argument
100 v = inw(dev->base_addr + a); in hfa384x_inw_debug()
101 prism2_io_debug_add(dev, PRISM2_IO_DEBUG_CMD_INW, a, v); in hfa384x_inw_debug()
106 static inline void hfa384x_outsw_debug(struct net_device *dev, int a, in hfa384x_outsw_debug() argument
116 prism2_io_debug_add(dev, PRISM2_IO_DEBUG_CMD_OUTSW, a, wc); in hfa384x_outsw_debug()
117 outsw(dev->base_addr + a, buf, wc); in hfa384x_outsw_debug()
121 static inline void hfa384x_insw_debug(struct net_device *dev, int a, in hfa384x_insw_debug() argument
131 prism2_io_debug_add(dev, PRISM2_IO_DEBUG_CMD_INSW, a, wc); in hfa384x_insw_debug()
132 insw(dev->base_addr + a, buf, wc); in hfa384x_insw_debug()
136 #define HFA384X_OUTB(v,a) hfa384x_outb_debug(dev, (a), (v)) argument
137 #define HFA384X_INB(a) hfa384x_inb_debug(dev, (a)) argument
138 #define HFA384X_OUTW(v,a) hfa384x_outw_debug(dev, (a), (v)) argument
139 #define HFA384X_INW(a) hfa384x_inw_debug(dev, (a)) argument
140 #define HFA384X_OUTSW(a, buf, wc) hfa384x_outsw_debug(dev, (a), (buf), (wc)) argument
141 #define HFA384X_INSW(a, buf, wc) hfa384x_insw_debug(dev, (a), (buf), (wc)) argument
145 #define HFA384X_OUTB(v,a) outb((v), dev->base_addr + (a)) argument
146 #define HFA384X_INB(a) inb(dev->base_addr + (a)) argument
147 #define HFA384X_OUTW(v,a) outw((v), dev->base_addr + (a)) argument
148 #define HFA384X_INW(a) inw(dev->base_addr + (a)) argument
149 #define HFA384X_INSW(a, buf, wc) insw(dev->base_addr + (a), buf, wc) argument
150 #define HFA384X_OUTSW(a, buf, wc) outsw(dev->base_addr + (a), buf, wc) argument