diff options
Diffstat (limited to 'drivers/video/arkfb.c')
-rw-r--r-- | drivers/video/arkfb.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/video/arkfb.c b/drivers/video/arkfb.c index 658fff45332c..a4cfcf99ceb6 100644 --- a/drivers/video/arkfb.c +++ b/drivers/video/arkfb.c | |||
@@ -158,12 +158,19 @@ static void arkfb_settile(struct fb_info *info, struct fb_tilemap *map) | |||
158 | } | 158 | } |
159 | } | 159 | } |
160 | 160 | ||
161 | static void arkfb_tilecursor(struct fb_info *info, struct fb_tilecursor *cursor) | ||
162 | { | ||
163 | struct arkfb_info *par = info->par; | ||
164 | |||
165 | svga_tilecursor(par->state.vgabase, info, cursor); | ||
166 | } | ||
167 | |||
161 | static struct fb_tile_ops arkfb_tile_ops = { | 168 | static struct fb_tile_ops arkfb_tile_ops = { |
162 | .fb_settile = arkfb_settile, | 169 | .fb_settile = arkfb_settile, |
163 | .fb_tilecopy = svga_tilecopy, | 170 | .fb_tilecopy = svga_tilecopy, |
164 | .fb_tilefill = svga_tilefill, | 171 | .fb_tilefill = svga_tilefill, |
165 | .fb_tileblit = svga_tileblit, | 172 | .fb_tileblit = svga_tileblit, |
166 | .fb_tilecursor = svga_tilecursor, | 173 | .fb_tilecursor = arkfb_tilecursor, |
167 | .fb_get_tilemax = svga_get_tilemax, | 174 | .fb_get_tilemax = svga_get_tilemax, |
168 | }; | 175 | }; |
169 | 176 | ||