Lines Matching full:fixed
46 bool fixed) in wlcore_raw_write() argument
55 ret = wl->if_ops->write(wl->dev, addr, buf, len, fixed); in wlcore_raw_write()
64 bool fixed) in wlcore_raw_read() argument
73 ret = wl->if_ops->read(wl->dev, addr, buf, len, fixed); in wlcore_raw_read()
82 bool fixed) in wlcore_raw_read_data() argument
84 return wlcore_raw_read(wl, wl->rtable[reg], buf, len, fixed); in wlcore_raw_read_data()
89 bool fixed) in wlcore_raw_write_data() argument
91 return wlcore_raw_write(wl, wl->rtable[reg], buf, len, fixed); in wlcore_raw_write_data()
119 void *buf, size_t len, bool fixed) in wlcore_read() argument
125 return wlcore_raw_read(wl, physical, buf, len, fixed); in wlcore_read()
129 void *buf, size_t len, bool fixed) in wlcore_write() argument
135 return wlcore_raw_write(wl, physical, buf, len, fixed); in wlcore_write()
140 bool fixed) in wlcore_write_data() argument
142 return wlcore_write(wl, wl->rtable[reg], buf, len, fixed); in wlcore_write_data()
147 bool fixed) in wlcore_read_data() argument
149 return wlcore_read(wl, wl->rtable[reg], buf, len, fixed); in wlcore_read_data()
154 bool fixed) in wlcore_read_hwaddr() argument
164 return wlcore_raw_read(wl, physical, buf, len, fixed); in wlcore_read_hwaddr()