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
3574 struct rtw89_early_h2c *early_h2c; in rtw89_debug_priv_early_h2c_get() local
3580 list_for_each_entry(early_h2c, &rtwdev->early_h2c_list, list) in rtw89_debug_priv_early_h2c_get()
3582 early_h2c->h2c_len, early_h2c->h2c); in rtw89_debug_priv_early_h2c_get()
3592 struct rtw89_early_h2c *early_h2c; in rtw89_debug_priv_early_h2c_set() local
3608 early_h2c = kmalloc_obj(*early_h2c); in rtw89_debug_priv_early_h2c_set()
3609 if (!early_h2c) { in rtw89_debug_priv_early_h2c_set()
3614 early_h2c->h2c = h2c; in rtw89_debug_priv_early_h2c_set()
3615 early_h2c->h2c_len = h2c_len; in rtw89_debug_priv_early_h2c_set()
3617 list_add_tail(&early_h2c->list, &rtwdev->early_h2c_list); in rtw89_debug_priv_early_h2c_set()
[all …]
H A Dfw.c9005 struct rtw89_early_h2c *early_h2c; in rtw89_fw_send_all_early_h2c() local
9009 list_for_each_entry(early_h2c, &rtwdev->early_h2c_list, list) { in rtw89_fw_send_all_early_h2c()
9010 rtw89_fw_h2c_raw(rtwdev, early_h2c->h2c, early_h2c->h2c_len); in rtw89_fw_send_all_early_h2c()
9016 struct rtw89_early_h2c *early_h2c, *tmp; in __rtw89_fw_free_all_early_h2c() local
9018 list_for_each_entry_safe(early_h2c, tmp, &rtwdev->early_h2c_list, list) { in __rtw89_fw_free_all_early_h2c()
9019 list_del(&early_h2c->list); in __rtw89_fw_free_all_early_h2c()
9020 kfree(early_h2c->h2c); in __rtw89_fw_free_all_early_h2c()
9021 kfree(early_h2c); in __rtw89_fw_free_all_early_h2c()