diff options
author | Tomas Carnecky <tom@dbservice.com> | 2012-07-10 02:03:11 +0100 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-07-09 23:40:55 -0700 |
commit | 60f53e3012be795eee741ecd4be858552c5e86c8 (patch) | |
tree | 18b75841168f0ee6a4b1af33b96fb3a8e2f43f67 /hw/xfree86/common/xf86Extensions.c | |
parent | 7a5880bc3b47e1f90a638f056ad4d40be6931977 (diff) |
DGA: Remove excessive module-induced indirection
The DGA event base used to have to be passed through a function pointer,
as the code was cleaved in two with half in a module, and half in the
core server. Now that's not the case, just access DGAEventBase
directly.
v2: Deal with Alan's event initialization cleanups
Signed-off-by: Tomas Carnecky <tom@dbservice.com>
Reviewed-by: Daniel Stone <daniel@fooishbar.org>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw/xfree86/common/xf86Extensions.c')
-rw-r--r-- | hw/xfree86/common/xf86Extensions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/common/xf86Extensions.c b/hw/xfree86/common/xf86Extensions.c index 7a84988d7..5ee6be88f 100644 --- a/hw/xfree86/common/xf86Extensions.c +++ b/hw/xfree86/common/xf86Extensions.c @@ -54,7 +54,7 @@ static ExtensionModule extensionModules[] = { XFree86DGAExtensionInit, XF86DGANAME, &noXFree86DGAExtension, - XFree86DGARegister, + NULL, NULL }, #endif |