Home
last modified time | relevance | path

Searched refs:early_h2c (Results 1 – 2 of 2) sorted by relevance

/Linux-v6.1/drivers/net/wireless/realtek/rtw89/
Ddebug.c2144 struct rtw89_early_h2c *early_h2c; in rtw89_debug_priv_early_h2c_get() local
2148 list_for_each_entry(early_h2c, &rtwdev->early_h2c_list, list) in rtw89_debug_priv_early_h2c_get()
2149 seq_printf(m, "%d: %*ph\n", ++seq, early_h2c->h2c_len, early_h2c->h2c); in rtw89_debug_priv_early_h2c_get()
2162 struct rtw89_early_h2c *early_h2c; in rtw89_debug_priv_early_h2c_set() local
2176 early_h2c = kmalloc(sizeof(*early_h2c), GFP_KERNEL); in rtw89_debug_priv_early_h2c_set()
2177 if (!early_h2c) { in rtw89_debug_priv_early_h2c_set()
2182 early_h2c->h2c = h2c; in rtw89_debug_priv_early_h2c_set()
2183 early_h2c->h2c_len = h2c_len; in rtw89_debug_priv_early_h2c_set()
2186 list_add_tail(&early_h2c->list, &rtwdev->early_h2c_list); in rtw89_debug_priv_early_h2c_set()
2661 rtw89_debugfs_add_rw(early_h2c); in rtw89_debugfs_init()
Dfw.c2292 struct rtw89_early_h2c *early_h2c; in rtw89_fw_send_all_early_h2c() local
2296 list_for_each_entry(early_h2c, &rtwdev->early_h2c_list, list) { in rtw89_fw_send_all_early_h2c()
2297 rtw89_fw_h2c_raw(rtwdev, early_h2c->h2c, early_h2c->h2c_len); in rtw89_fw_send_all_early_h2c()
2303 struct rtw89_early_h2c *early_h2c, *tmp; in rtw89_fw_free_all_early_h2c() local
2306 list_for_each_entry_safe(early_h2c, tmp, &rtwdev->early_h2c_list, list) { in rtw89_fw_free_all_early_h2c()
2307 list_del(&early_h2c->list); in rtw89_fw_free_all_early_h2c()
2308 kfree(early_h2c->h2c); in rtw89_fw_free_all_early_h2c()
2309 kfree(early_h2c); in rtw89_fw_free_all_early_h2c()