diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-06-25 21:16:53 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-06-25 21:16:53 +0000 |
commit | e3cc3456c128db6f0da06be84355d67cddf00c1f (patch) | |
tree | 648d814279e48753dcdb6f5586779479e4dedccf | |
parent | b9c4a3ddd1fe26da0e7b4c0e87f603d6c645b17d (diff) |
Bug #3626: _X_EXPORT tags for video and input drivers.XORG-6_8_99_14XORG-6_8_99_13
-rw-r--r-- | src/ct_driver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ct_driver.c b/src/ct_driver.c index 2b852df..7254753 100644 --- a/src/ct_driver.c +++ b/src/ct_driver.c @@ -474,7 +474,7 @@ static DisplayModeRec ChipsNTSCMode = { * an upper-case version of the driver name. */ -DriverRec CHIPS = { +_X_EXPORT DriverRec CHIPS = { VERSION, CHIPS_DRIVER_NAME, CHIPSIdentify, @@ -761,7 +761,7 @@ static XF86ModuleVersionInfo chipsVersRec = * This is the module init data. * Its name has to be the driver name followed by ModuleData */ -XF86ModuleData chipsModuleData = { &chipsVersRec, chipsSetup, NULL }; +_X_EXPORT XF86ModuleData chipsModuleData = { &chipsVersRec, chipsSetup, NULL }; static pointer chipsSetup(pointer module, pointer opts, int *errmaj, int *errmin) |