Lines Matching refs:options
909 int __init video_setup(char *options) in video_setup() argument
913 if (!options || !*options) in video_setup()
916 if (!strncmp(options, "scrollback:", 11)) { in video_setup()
917 options += 11; in video_setup()
918 if (*options) { in video_setup()
919 fbcon_softback_size = simple_strtoul(options, &options, 0); in video_setup()
920 if (*options == 'k' || *options == 'K') { in video_setup()
922 options++; in video_setup()
924 if (*options != ',') in video_setup()
926 options++; in video_setup()
931 if (!strncmp(options, "map:", 4)) { in video_setup()
932 options += 4; in video_setup()
933 if (*options) in video_setup()
935 if (!options[j]) in video_setup()
937 con2fb_map[i] = (options[j++]-'0') % FB_MAX; in video_setup()
942 if (!strncmp(options, "vc:", 3)) { in video_setup()
943 options += 3; in video_setup()
944 if (*options) in video_setup()
945 first_fb_vc = simple_strtoul(options, &options, 10) - 1; in video_setup()
948 if (*options++ == '-') in video_setup()
949 last_fb_vc = simple_strtoul(options, &options, 10) - 1; in video_setup()
954 if (!strcmp(options, "ofonly")) { in video_setup()
965 if (!strncmp(options, fb_drivers[i].name, j) && in video_setup()
966 options[j] == ':') { in video_setup()
967 if (!strcmp(options+j+1, "off")) in video_setup()
976 fb_drivers[i].setup(options+j+1); in video_setup()
986 global_mode_option = options; in video_setup()