Home
last modified time | relevance | path

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

/linux/drivers/net/wireless/realtek/rtw89/
H A Ddebug.c81 struct rtw89_debugfs_priv early_h2c; member
3493 struct rtw89_early_h2c *early_h2c; in rtw89_debug_priv_early_h2c_get() local
3499 list_for_each_entry(early_h2c, &rtwdev->early_h2c_list, list) in rtw89_debug_priv_early_h2c_get()
3501 early_h2c->h2c_len, early_h2c->h2c); in rtw89_debug_priv_early_h2c_get()
3511 struct rtw89_early_h2c *early_h2c; in rtw89_debug_priv_early_h2c_set() local
3527 early_h2c = kmalloc_obj(*early_h2c); in rtw89_debug_priv_early_h2c_set()
3528 if (!early_h2c) { in rtw89_debug_priv_early_h2c_set()
3533 early_h2c->h2c = h2c; in rtw89_debug_priv_early_h2c_set()
3534 early_h2c->h2c_len = h2c_len; in rtw89_debug_priv_early_h2c_set()
3536 list_add_tail(&early_h2c->list, &rtwdev->early_h2c_list); in rtw89_debug_priv_early_h2c_set()
[all …]
H A Dfw.c7760 struct rtw89_early_h2c *early_h2c; in rtw89_fw_send_all_early_h2c() local
7764 list_for_each_entry(early_h2c, &rtwdev->early_h2c_list, list) { in rtw89_fw_send_all_early_h2c()
7765 rtw89_fw_h2c_raw(rtwdev, early_h2c->h2c, early_h2c->h2c_len); in rtw89_fw_send_all_early_h2c()
7771 struct rtw89_early_h2c *early_h2c, *tmp; in __rtw89_fw_free_all_early_h2c() local
7773 list_for_each_entry_safe(early_h2c, tmp, &rtwdev->early_h2c_list, list) { in __rtw89_fw_free_all_early_h2c()
7774 list_del(&early_h2c->list); in __rtw89_fw_free_all_early_h2c()
7775 kfree(early_h2c->h2c); in __rtw89_fw_free_all_early_h2c()
7776 kfree(early_h2c); in __rtw89_fw_free_all_early_h2c()