diff options
author | Adam Jackson <ajax@redhat.com> | 2008-02-01 17:21:34 +1100 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-02-14 08:21:44 +1100 |
commit | e91ff09568c5579818b6641e88e95c6fe122cbe7 (patch) | |
tree | 86c27ab6eb83c9c2c67f55037f0afe3a5797c117 /hw/xfree86/exa | |
parent | 0bdd20a0454c94f902fd4874855125bf7510fcf5 (diff) |
Friends don't let friends call xf86AddModuleInfo.
That code only existed to leak memory. It can go now, thanks.
Diffstat (limited to 'hw/xfree86/exa')
-rw-r--r-- | hw/xfree86/exa/examodule.c | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/hw/xfree86/exa/examodule.c b/hw/xfree86/exa/examodule.c index b8d306eb4..086639cc5 100644 --- a/hw/xfree86/exa/examodule.c +++ b/hw/xfree86/exa/examodule.c @@ -178,8 +178,6 @@ exaDDXDriverInit(ScreenPtr pScreen) } -static MODULESETUPPROTO(exaSetup); - /*ARGSUSED*/ static const OptionInfoRec * EXAAvailableOptions(void *unused) @@ -201,26 +199,4 @@ static XF86ModuleVersionInfo exaVersRec = {0,0,0,0} }; -_X_EXPORT XF86ModuleData exaModuleData = { &exaVersRec, exaSetup, NULL }; - -static ModuleInfoRec EXA = { - 1, - "EXA", - NULL, - 0, - EXAAvailableOptions, -}; - -/*ARGSUSED*/ -static pointer -exaSetup(pointer Module, pointer Options, int *ErrorMajor, int *ErrorMinor) -{ - static Bool Initialised = FALSE; - - if (!Initialised) { - Initialised = TRUE; - xf86AddModuleInfo(&EXA, Module); - } - - return (pointer)TRUE; -} +_X_EXPORT XF86ModuleData exaModuleData = { &exaVersRec, NULL, NULL }; |