Lines Matching refs:intval
631 int intval; in bcons_init_fb() local
642 intval = atoi(propval); in bcons_init_fb()
643 if (intval >= 0 && intval <= 255) in bcons_init_fb()
644 fb_info.fg_color = intval; in bcons_init_fb()
650 intval = atoi(propval); in bcons_init_fb()
651 if (intval >= 0 && intval <= 255) in bcons_init_fb()
652 fb_info.bg_color = intval; in bcons_init_fb()
675 intval = atoi(propval); in bcons_init_fb()
676 if (intval >= 0 && intval <= 0xFFFF) in bcons_init_fb()
677 fb_info.cursor.pos.y = intval; in bcons_init_fb()
682 intval = atoi(propval); in bcons_init_fb()
683 if (intval >= 0 && intval <= 0xFFFF) in bcons_init_fb()
684 fb_info.cursor.pos.x = intval; in bcons_init_fb()