Lines Matching refs:head
988 struct list_head *head) in fb_find_best_mode() argument
995 list_for_each(pos, head) { in fb_find_best_mode()
1026 struct list_head *head) in fb_find_nearest_mode() argument
1033 list_for_each(pos, head) { in fb_find_nearest_mode()
1066 struct list_head *head) in fb_match_mode() argument
1073 list_for_each(pos, head) { in fb_match_mode()
1090 int fb_add_videomode(const struct fb_videomode *mode, struct list_head *head) in fb_add_videomode() argument
1097 list_for_each(pos, head) { in fb_add_videomode()
1112 list_add(&modelist->list, head); in fb_add_videomode()
1126 struct list_head *head) in fb_delete_videomode() argument
1132 list_for_each_safe(pos, n, head) { in fb_delete_videomode()
1146 void fb_destroy_modelist(struct list_head *head) in fb_destroy_modelist() argument
1150 list_for_each_safe(pos, n, head) { in fb_destroy_modelist()
1164 struct list_head *head) in fb_videomode_to_modelist() argument
1168 INIT_LIST_HEAD(head); in fb_videomode_to_modelist()
1171 if (fb_add_videomode(&modedb[i], head)) in fb_videomode_to_modelist()
1177 struct list_head *head) in fb_find_best_display() argument
1184 if (!head->prev || !head->next || list_empty(head)) in fb_find_best_display()
1188 list_for_each(pos, head) { in fb_find_best_display()
1216 m = fb_find_best_mode(&var, head); in fb_find_best_display()