mi: Hush extension initialization (#75870)

Printing these as ErrorF is fairly obnoxious, since it means the
non-hardware servers now spew stuff to the console for entirely routine
events.  And actually, printing these at all is fairly obnoxious, since
a) we're printing a line for every extension, whether it's enabled or
not, and b) we're not actually initializing the extension at this point.

Signed-off-by: Adam Jackson <ajax@redhat.com>
Reviewed-by: Daniel Stone <daniel@fooishbar.org>
Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
Adam Jackson 2014-03-27 11:48:39 -04:00 committed by Keith Packard
parent a2880699e8
commit 8468e24430

View File

@ -365,7 +365,6 @@ void
LoadExtensionList(const ExtensionModule ext[], int size, Bool builtin)
{
ExtensionModule *newext;
const char *msg;
int i;
/* Make sure built-in extensions get added to the list before those
@ -375,14 +374,7 @@ LoadExtensionList(const ExtensionModule ext[], int size, Bool builtin)
if (!(newext = NewExtensionModuleList(size)))
return;
if (builtin)
msg = "Initializing built-in";
else
msg = "Loading";
for (i = 0; i < size; i++, newext++) {
ErrorF("%s extension %s\n", msg, ext[i].name);
newext->name = ext[i].name;
newext->initFunc = ext[i].initFunc;
newext->disablePtr = ext[i].disablePtr;