Lines Matching full:options
35 const char *options = NULL; in __video_get_option_string() local
52 options = opt + name_len + 1; in __video_get_option_string()
56 /* No match, return global options */ in __video_get_option_string()
57 if (!options) in __video_get_option_string()
58 options = video_option; in __video_get_option_string()
60 return options; in __video_get_option_string()
66 * line (video=<name>:<options>)
68 * Looks up the video= options for the given name. Names are connector
74 * The string of video options for the given name, or NULL if no video
84 bool __video_get_options(const char *name, const char **options, bool is_of) in __video_get_options() argument
94 if (options) in __video_get_options()
95 *options = opt; in __video_get_options()
103 * Process command line options for video adapters. This function is
104 * a __setup and __init function. It only stores the options. Drivers
107 static int __init video_setup(char *options) in video_setup() argument
109 if (!options || !*options) in video_setup()
112 if (!strncmp(options, "ofonly", 6)) { in video_setup()
117 if (strchr(options, ':')) { in video_setup()
123 video_options[i] = options; in video_setup()
129 video_option = options; in video_setup()