Home
last modified time | relevance | path

Searched refs:static_data (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/net/wireless/ti/wlcore/
H A Dboot.c40 struct wl1271_static_data *static_data) in wlcore_boot_parse_fw_ver() argument
44 strscpy(wl->chip.fw_ver_str, static_data->fw_version, in wlcore_boot_parse_fw_ver()
128 struct wl1271_static_data *static_data; in wlcore_boot_static_data() local
129 size_t len = sizeof(*static_data) + wl->static_data_priv_len; in wlcore_boot_static_data()
132 static_data = kmalloc(len, GFP_KERNEL); in wlcore_boot_static_data()
133 if (!static_data) { in wlcore_boot_static_data()
138 ret = wlcore_read(wl, wl->cmd_box_addr, static_data, len, false); in wlcore_boot_static_data()
142 ret = wlcore_boot_parse_fw_ver(wl, static_data); in wlcore_boot_static_data()
150 ret = wlcore_handle_static_data(wl, static_data); in wlcore_boot_static_data()
155 kfree(static_data); in wlcore_boot_static_data()
H A Dhw_ops.h161 wlcore_handle_static_data(struct wl1271 *wl, void *static_data) in wlcore_handle_static_data() argument
164 return wl->ops->handle_static_data(wl, static_data); in wlcore_handle_static_data()
H A Dwlcore.h81 struct wl1271_static_data *static_data);