Lines Matching refs:cooked_font
497 struct sti_cooked_font *cooked_font; in sti_select_fbfont() local
531 cooked_font = kzalloc(sizeof(*cooked_font), GFP_KERNEL); in sti_select_fbfont()
532 if (!cooked_font) { in sti_select_fbfont()
537 cooked_font->raw = nf; in sti_select_fbfont()
538 cooked_font->raw_ptr = nf; in sti_select_fbfont()
539 cooked_font->next_font = NULL; in sti_select_fbfont()
541 cooked_rom->font_start = cooked_font; in sti_select_fbfont()
543 return cooked_font; in sti_select_fbfont()
649 struct sti_cooked_font *cooked_font; in sti_cook_fonts() local
651 cooked_font = kzalloc(sizeof(*cooked_font), GFP_KERNEL); in sti_cook_fonts()
652 if (!cooked_font) in sti_cook_fonts()
655 cooked_rom->font_start = cooked_font; in sti_cook_fonts()
660 cooked_font->raw = raw_font; in sti_cook_fonts()
665 cooked_font->next_font = kzalloc(sizeof(*cooked_font), GFP_KERNEL); in sti_cook_fonts()
666 if (!cooked_font->next_font) in sti_cook_fonts()
669 cooked_font = cooked_font->next_font; in sti_cook_fonts()
671 cooked_font->raw = raw_font; in sti_cook_fonts()
674 cooked_font->next_font = NULL; in sti_cook_fonts()