diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-06-25 21:16:59 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-06-25 21:16:59 +0000 |
commit | 1fa8d2f701bd9173c36610ecf09bce25c1b32a82 (patch) | |
tree | 7ab92ce825a69f393f52f0a3df7937958245bf98 | |
parent | 7123df70e01cbcca9a49a0b54b7f421f4a91760a (diff) |
Bug #3626: _X_EXPORT tags for video and input drivers.XORG-6_8_99_14XORG-6_8_99_13
-rw-r--r-- | src/v4l.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -29,7 +29,7 @@ static void V4LIdentify(int flags); static Bool V4LProbe(DriverPtr drv, int flags); static const OptionInfoRec * V4LAvailableOptions(int chipid, int busid); -DriverRec V4L = { +_X_EXPORT DriverRec V4L = { 40000, "v4l", V4LIdentify, /* Identify*/ @@ -58,7 +58,7 @@ static XF86ModuleVersionInfo v4lVersRec = {0,0,0,0} }; -XF86ModuleData v4lModuleData = { &v4lVersRec, v4lSetup, NULL }; +_X_EXPORT XF86ModuleData v4lModuleData = { &v4lVersRec, v4lSetup, NULL }; static pointer v4lSetup(pointer module, pointer opts, int *errmaj, int *errmin) |