Home
last modified time | relevance | path

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

/linux-6.15/drivers/net/wireless/realtek/rtw89/
H A Ddebug.c80 struct rtw89_debugfs_priv early_h2c; member
3509 struct rtw89_early_h2c *early_h2c; in rtw89_debug_priv_early_h2c_get() local
3517 early_h2c->h2c_len, early_h2c->h2c); in rtw89_debug_priv_early_h2c_get()
3527 struct rtw89_early_h2c *early_h2c; in rtw89_debug_priv_early_h2c_set() local
3543 early_h2c = kmalloc(sizeof(*early_h2c), GFP_KERNEL); in rtw89_debug_priv_early_h2c_set()
3544 if (!early_h2c) { in rtw89_debug_priv_early_h2c_set()
3549 early_h2c->h2c = h2c; in rtw89_debug_priv_early_h2c_set()
3550 early_h2c->h2c_len = h2c_len; in rtw89_debug_priv_early_h2c_set()
3552 list_add_tail(&early_h2c->list, &rtwdev->early_h2c_list); in rtw89_debug_priv_early_h2c_set()
4253 .early_h2c = rtw89_debug_priv_set_and_get(early_h2c, RWLOCK),
[all …]
H A Dfw.c6289 struct rtw89_early_h2c *early_h2c; in rtw89_fw_send_all_early_h2c() local
6293 list_for_each_entry(early_h2c, &rtwdev->early_h2c_list, list) { in rtw89_fw_send_all_early_h2c()
6294 rtw89_fw_h2c_raw(rtwdev, early_h2c->h2c, early_h2c->h2c_len); in rtw89_fw_send_all_early_h2c()
6300 struct rtw89_early_h2c *early_h2c, *tmp; in __rtw89_fw_free_all_early_h2c() local
6302 list_for_each_entry_safe(early_h2c, tmp, &rtwdev->early_h2c_list, list) { in __rtw89_fw_free_all_early_h2c()
6303 list_del(&early_h2c->list); in __rtw89_fw_free_all_early_h2c()
6304 kfree(early_h2c->h2c); in __rtw89_fw_free_all_early_h2c()
6305 kfree(early_h2c); in __rtw89_fw_free_all_early_h2c()