Lines Matching refs:fixed
59 bool fixed) in wlcore_raw_write() argument
68 ret = wl->if_ops->write(wl->dev, addr, buf, len, fixed); in wlcore_raw_write()
77 bool fixed) in wlcore_raw_read() argument
86 ret = wl->if_ops->read(wl->dev, addr, buf, len, fixed); in wlcore_raw_read()
95 bool fixed) in wlcore_raw_read_data() argument
97 return wlcore_raw_read(wl, wl->rtable[reg], buf, len, fixed); in wlcore_raw_read_data()
102 bool fixed) in wlcore_raw_write_data() argument
104 return wlcore_raw_write(wl, wl->rtable[reg], buf, len, fixed); in wlcore_raw_write_data()
132 void *buf, size_t len, bool fixed) in wlcore_read() argument
138 return wlcore_raw_read(wl, physical, buf, len, fixed); in wlcore_read()
142 void *buf, size_t len, bool fixed) in wlcore_write() argument
148 return wlcore_raw_write(wl, physical, buf, len, fixed); in wlcore_write()
153 bool fixed) in wlcore_write_data() argument
155 return wlcore_write(wl, wl->rtable[reg], buf, len, fixed); in wlcore_write_data()
160 bool fixed) in wlcore_read_data() argument
162 return wlcore_read(wl, wl->rtable[reg], buf, len, fixed); in wlcore_read_data()
167 bool fixed) in wlcore_read_hwaddr() argument
177 return wlcore_raw_read(wl, physical, buf, len, fixed); in wlcore_read_hwaddr()