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

/freebsd-current/sys/contrib/dev/rtw89/
H A Ddebug.c3069 struct rtw89_early_h2c *early_h2c; local
3073 list_for_each_entry(early_h2c, &rtwdev->early_h2c_list, list)
3074 seq_printf(m, "%d: %*ph\n", ++seq, early_h2c->h2c_len, early_h2c->h2c);
3087 struct rtw89_early_h2c *early_h2c; local
3101 early_h2c = kmalloc(sizeof(*early_h2c), GFP_KERNEL);
3102 if (!early_h2c) {
3107 early_h2c->h2c = h2c;
3108 early_h2c
[all...]
H A Dfw.c3323 struct rtw89_early_h2c *early_h2c; local
3327 list_for_each_entry(early_h2c, &rtwdev->early_h2c_list, list) {
3328 rtw89_fw_h2c_raw(rtwdev, early_h2c->h2c, early_h2c->h2c_len);
3334 struct rtw89_early_h2c *early_h2c, *tmp; local
3337 list_for_each_entry_safe(early_h2c, tmp, &rtwdev->early_h2c_list, list) {
3338 list_del(&early_h2c->list);
3339 kfree(early_h2c->h2c);
3340 kfree(early_h2c);

Completed in 134 milliseconds