Lines Matching refs:ModuleDefaults
112 static ModuleDefault ModuleDefaults[] = {
285 for (i=0 ; ModuleDefaults[i].name != NULL ; i++) {
286 if (ModuleDefaults[i].toLoad == FALSE) {
287 xf86Msg(X_WARNING, "\"%s\" is not to be loaded by default. Skipping.\n", ModuleDefaults[i].name);
293 if (strcmp(modp->load_name, ModuleDefaults[i].name) == 0) {
294 xf86Msg(X_INFO, "\"%s\" will be loaded. This was enabled by default and also specified in the config file.\n", ModuleDefaults[i].name);
303 if (strcmp(modp->load_name, ModuleDefaults[i].name) == 0) {
304 xf86Msg(X_INFO, "\"%s\" will be loaded even though the default is to disable it.\n", ModuleDefaults[i].name);
313 xf86addNewLoadDirective(ptr, ModuleDefaults[i].name, XF86_LOAD_MODULE, ModuleDefaults[i].load_opt);
314 xf86Msg(X_INFO, "\"%s\" will be loaded by default.\n", ModuleDefaults[i].name);
319 for (i=0 ; ModuleDefaults[i].name != NULL ; i++) {
320 if (ModuleDefaults[i].toLoad == TRUE) {
322 xf86addNewLoadDirective(ptr, ModuleDefaults[i].name, XF86_LOAD_MODULE, ModuleDefaults[i].load_opt);