summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2002-05-25 10:17:37 -0500
committerKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2002-05-25 10:17:37 -0500
commit0e53dc637111b2affeeba24100cdf7c709055a48 (patch)
treebf0b670294cb4e49a2debc518b5b6f051b6f6dc7
parentcc4749dc69abeaaad4cd4c4484d8c6b00dc1cf21 (diff)
drivers/video/matrox/matroxfb_accel.c: Explicitly export symbols.
So I missed at least one file which still relied on implicitly exporting symbols. Now fixed.
-rw-r--r--drivers/video/matrox/matroxfb_accel.c11
-rw-r--r--drivers/video/matrox/matroxfb_accel.h1
2 files changed, 10 insertions, 2 deletions
diff --git a/drivers/video/matrox/matroxfb_accel.c b/drivers/video/matrox/matroxfb_accel.c
index b42c34d3308d..5a0048b72a35 100644
--- a/drivers/video/matrox/matroxfb_accel.c
+++ b/drivers/video/matrox/matroxfb_accel.c
@@ -143,6 +143,8 @@ void matrox_cfbX_init(WPMINFO struct display* p) {
ACCESS_FBINFO(accel.m_opmode) = mopmode;
}
+EXPORT_SYMBOL(matrox_cfbX_init);
+
static void matrox_cfbX_bmove(struct display* p, int sy, int sx, int dy, int dx, int height, int width) {
int pixx = p->var.xres_virtual, start, end;
CRITFLAGS
@@ -943,7 +945,7 @@ static void matrox_text_revc(struct display* p, int xx, int yy) {
CRITEND
}
-void matrox_text_createcursor(WPMINFO struct display* p) {
+static void matrox_text_createcursor(WPMINFO struct display* p) {
CRITFLAGS
if (ACCESS_FBINFO(currcon_display) != p)
@@ -1029,6 +1031,8 @@ void matrox_text_round(CPMINFO struct fb_var_screeninfo* var, struct display* p)
var->xres_virtual = vxres * hf;
}
+EXPORT_SYMBOL(matrox_text_round);
+
static int matrox_text_setfont(struct display* p, int width, int height) {
DBG("matrox_text_setfont");
@@ -1223,6 +1227,8 @@ void initMatrox(WPMINFO struct display* p) {
}
}
+EXPORT_SYMBOL(initMatrox);
+
void matrox_init_putc(WPMINFO struct display* p, void (*dac_createcursor)(WPMINFO struct display* p)) {
int i;
@@ -1245,4 +1251,7 @@ void matrox_init_putc(WPMINFO struct display* p, void (*dac_createcursor)(WPMINF
ACCESS_FBINFO(curr.putcs) = matrox_cfbX_putcs;
}
}
+
+EXPORT_SYMBOL(matrox_init_putc);
+
MODULE_LICENSE("GPL");
diff --git a/drivers/video/matrox/matroxfb_accel.h b/drivers/video/matrox/matroxfb_accel.h
index a3165a0a29c2..ab757c8e5f57 100644
--- a/drivers/video/matrox/matroxfb_accel.h
+++ b/drivers/video/matrox/matroxfb_accel.h
@@ -5,7 +5,6 @@
void matrox_init_putc(WPMINFO struct display* p, void (*)(WPMINFO struct display *p));
void matrox_cfbX_init(WPMINFO struct display* p);
-void matrox_text_createcursor(WPMINFO struct display* p);
void matrox_text_round(CPMINFO struct fb_var_screeninfo* var, struct display* p);
void initMatrox(WPMINFO struct display* p);