summaryrefslogtreecommitdiff
path: root/hw/xfree86/i2c
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2005-06-25 21:16:54 +0000
committerAdam Jackson <ajax@nwnk.net>2005-06-25 21:16:54 +0000
commit8562f800b879ae461317da9640961f753e107250 (patch)
tree30a1f54cc8ae81434d9a826d8238489adc870c54 /hw/xfree86/i2c
parent582a9f0d2ec01f1a3c5625e2f45a4599be7a11d5 (diff)
Bug #3626: _X_EXPORT tags for video and input drivers.
Diffstat (limited to 'hw/xfree86/i2c')
-rw-r--r--hw/xfree86/i2c/bt829_module.c2
-rw-r--r--hw/xfree86/i2c/fi1236_module.c6
-rw-r--r--hw/xfree86/i2c/msp3430_module.c6
-rw-r--r--hw/xfree86/i2c/tda8425_module.c6
-rw-r--r--hw/xfree86/i2c/tda9850_module.c6
-rw-r--r--hw/xfree86/i2c/tda9885_module.c6
-rw-r--r--hw/xfree86/i2c/uda1380_module.c6
7 files changed, 31 insertions, 7 deletions
diff --git a/hw/xfree86/i2c/bt829_module.c b/hw/xfree86/i2c/bt829_module.c
index b0b4dd76c..998fdcb7e 100644
--- a/hw/xfree86/i2c/bt829_module.c
+++ b/hw/xfree86/i2c/bt829_module.c
@@ -18,7 +18,7 @@ static XF86ModuleVersionInfo bt829VersRec =
{0,0,0,0}
};
-XF86ModuleData bt829ModuleData = { &bt829VersRec, bt829Setup, NULL };
+_X_EXPORT XF86ModuleData bt829ModuleData = { &bt829VersRec, bt829Setup, NULL };
static pointer
bt829Setup(pointer module, pointer opts, int *errmaj, int *errmin) {
diff --git a/hw/xfree86/i2c/fi1236_module.c b/hw/xfree86/i2c/fi1236_module.c
index f6bbc7b59..828f2b2d2 100644
--- a/hw/xfree86/i2c/fi1236_module.c
+++ b/hw/xfree86/i2c/fi1236_module.c
@@ -18,7 +18,11 @@ static XF86ModuleVersionInfo fi1236VersRec =
{0,0,0,0}
};
-XF86ModuleData fi1236ModuleData = { &fi1236VersRec, fi1236Setup, NULL };
+_X_EXPORT XF86ModuleData fi1236ModuleData = {
+ &fi1236VersRec,
+ fi1236Setup,
+ NULL
+};
static pointer
fi1236Setup(pointer module, pointer opts, int *errmaj, int *errmin) {
diff --git a/hw/xfree86/i2c/msp3430_module.c b/hw/xfree86/i2c/msp3430_module.c
index e918c9545..a036164a9 100644
--- a/hw/xfree86/i2c/msp3430_module.c
+++ b/hw/xfree86/i2c/msp3430_module.c
@@ -18,7 +18,11 @@ static XF86ModuleVersionInfo msp3430VersRec =
{0,0,0,0}
};
-XF86ModuleData msp3430ModuleData = { &msp3430VersRec, msp3430Setup, NULL };
+_X_EXPORT XF86ModuleData msp3430ModuleData = {
+ &msp3430VersRec,
+ msp3430Setup,
+ NULL
+};
static pointer
msp3430Setup(pointer module, pointer opts, int *errmaj, int *errmin) {
diff --git a/hw/xfree86/i2c/tda8425_module.c b/hw/xfree86/i2c/tda8425_module.c
index ecc8c9bdd..7d35273ff 100644
--- a/hw/xfree86/i2c/tda8425_module.c
+++ b/hw/xfree86/i2c/tda8425_module.c
@@ -18,7 +18,11 @@ static XF86ModuleVersionInfo tda8425VersRec =
{0,0,0,0}
};
-XF86ModuleData tda8425ModuleData = { &tda8425VersRec, tda8425Setup, NULL };
+_X_EXPORT XF86ModuleData tda8425ModuleData = {
+ &tda8425VersRec,
+ tda8425Setup,
+ NULL
+};
static pointer
tda8425Setup(pointer module, pointer opts, int *errmaj, int *errmin) {
diff --git a/hw/xfree86/i2c/tda9850_module.c b/hw/xfree86/i2c/tda9850_module.c
index 3160133de..b609c6a32 100644
--- a/hw/xfree86/i2c/tda9850_module.c
+++ b/hw/xfree86/i2c/tda9850_module.c
@@ -18,7 +18,11 @@ static XF86ModuleVersionInfo tda9850VersRec =
{0,0,0,0}
};
-XF86ModuleData tda9850ModuleData = { &tda9850VersRec, tda9850Setup, NULL };
+_X_EXPORT XF86ModuleData tda9850ModuleData = {
+ &tda9850VersRec,
+ tda9850Setup,
+ NULL
+};
static pointer
tda9850Setup(pointer module, pointer opts, int *errmaj, int *errmin) {
diff --git a/hw/xfree86/i2c/tda9885_module.c b/hw/xfree86/i2c/tda9885_module.c
index bf68ce9f4..cafe35a3e 100644
--- a/hw/xfree86/i2c/tda9885_module.c
+++ b/hw/xfree86/i2c/tda9885_module.c
@@ -18,7 +18,11 @@ static XF86ModuleVersionInfo tda9885VersRec =
{0,0,0,0}
};
-XF86ModuleData tda9885ModuleData = { &tda9885VersRec, tda9885Setup, NULL };
+_X_EXPORT XF86ModuleData tda9885ModuleData = {
+ &tda9885VersRec,
+ tda9885Setup,
+ NULL
+};
static pointer
tda9885Setup(pointer module, pointer opts, int *errmaj, int *errmin) {
diff --git a/hw/xfree86/i2c/uda1380_module.c b/hw/xfree86/i2c/uda1380_module.c
index a82126364..61aa40bb8 100644
--- a/hw/xfree86/i2c/uda1380_module.c
+++ b/hw/xfree86/i2c/uda1380_module.c
@@ -18,7 +18,11 @@ static XF86ModuleVersionInfo uda1380VersRec =
{0,0,0,0}
};
-XF86ModuleData uda1380ModuleData = { &uda1380VersRec, uda1380Setup, NULL };
+_X_EXPORT XF86ModuleData uda1380ModuleData = {
+ &uda1380VersRec,
+ uda1380Setup,
+ NULL
+};
static pointer
uda1380Setup(pointer module, pointer opts, int *errmaj, int *errmin) {