Commit 0e53dc63 authored by Kai Germaschewski's avatar Kai Germaschewski

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.
parent cc4749dc
...@@ -143,6 +143,8 @@ void matrox_cfbX_init(WPMINFO struct display* p) { ...@@ -143,6 +143,8 @@ void matrox_cfbX_init(WPMINFO struct display* p) {
ACCESS_FBINFO(accel.m_opmode) = mopmode; 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) { 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; int pixx = p->var.xres_virtual, start, end;
CRITFLAGS CRITFLAGS
...@@ -943,7 +945,7 @@ static void matrox_text_revc(struct display* p, int xx, int yy) { ...@@ -943,7 +945,7 @@ static void matrox_text_revc(struct display* p, int xx, int yy) {
CRITEND CRITEND
} }
void matrox_text_createcursor(WPMINFO struct display* p) { static void matrox_text_createcursor(WPMINFO struct display* p) {
CRITFLAGS CRITFLAGS
if (ACCESS_FBINFO(currcon_display) != p) if (ACCESS_FBINFO(currcon_display) != p)
...@@ -1029,6 +1031,8 @@ void matrox_text_round(CPMINFO struct fb_var_screeninfo* var, struct display* p) ...@@ -1029,6 +1031,8 @@ void matrox_text_round(CPMINFO struct fb_var_screeninfo* var, struct display* p)
var->xres_virtual = vxres * hf; var->xres_virtual = vxres * hf;
} }
EXPORT_SYMBOL(matrox_text_round);
static int matrox_text_setfont(struct display* p, int width, int height) { static int matrox_text_setfont(struct display* p, int width, int height) {
DBG("matrox_text_setfont"); DBG("matrox_text_setfont");
...@@ -1223,6 +1227,8 @@ void initMatrox(WPMINFO struct display* p) { ...@@ -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)) { void matrox_init_putc(WPMINFO struct display* p, void (*dac_createcursor)(WPMINFO struct display* p)) {
int i; int i;
...@@ -1245,4 +1251,7 @@ void matrox_init_putc(WPMINFO struct display* p, void (*dac_createcursor)(WPMINF ...@@ -1245,4 +1251,7 @@ void matrox_init_putc(WPMINFO struct display* p, void (*dac_createcursor)(WPMINF
ACCESS_FBINFO(curr.putcs) = matrox_cfbX_putcs; ACCESS_FBINFO(curr.putcs) = matrox_cfbX_putcs;
} }
} }
EXPORT_SYMBOL(matrox_init_putc);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
void matrox_init_putc(WPMINFO struct display* p, void (*)(WPMINFO struct display *p)); void matrox_init_putc(WPMINFO struct display* p, void (*)(WPMINFO struct display *p));
void matrox_cfbX_init(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 matrox_text_round(CPMINFO struct fb_var_screeninfo* var, struct display* p);
void initMatrox(WPMINFO struct display* p); void initMatrox(WPMINFO struct display* p);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment