diff options
author | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com> | 2008-01-31 22:47:18 -0200 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2008-02-01 16:28:14 -0800 |
commit | be1b568bc2379856c3eaaed365002512bebc218c (patch) | |
tree | 06e29f5ecf86ef8a1d991712a3d49ef925d4374b /src/tfp410 | |
parent | cc1031a834b81aa6f835c282ad86deddabe229a0 (diff) |
Make sure symbols used by other modules are public.
These symbols must be explicitly exported, otherwise if compiled with
hidden symbols, LoaderSymbol (and dlopen) will fail to find them.
Diffstat (limited to 'src/tfp410')
-rw-r--r-- | src/tfp410/tfp410.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tfp410/tfp410.c b/src/tfp410/tfp410.c index b79fd2a8..bb038cdb 100644 --- a/src/tfp410/tfp410.c +++ b/src/tfp410/tfp410.c @@ -259,7 +259,7 @@ tfp410_restore(I2CDevPtr d) tfp410WriteByte(tfp, TFP410_CTL_1, tfp->SavedReg.ctl1); } -I830I2CVidOutputRec TFP410VidOutput = { +_X_EXPORT I830I2CVidOutputRec TFP410VidOutput = { .init = tfp410_init, .detect = tfp410_detect, .mode_valid = tfp410_mode_valid, |