Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 54941
b: refs/heads/master
c: ff388ad
h: refs/heads/master
i:
  54939: a4b148c
v: v3
  • Loading branch information
Antonino A. Daplas authored and Linus Torvalds committed May 8, 2007
1 parent c3c7f46 commit c5181cb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 11f11d522f74965fce421a5a09ff0ab178139d36
refs/heads/master: ff388ad05bc67163124ac74126bbc16faa2fb771
7 changes: 6 additions & 1 deletion trunk/drivers/video/s3fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,14 +183,18 @@ static void s3fb_settile_fast(struct fb_info *info, struct fb_tilemap *map)
}
}


static int s3fb_get_tilemax(struct fb_info *info)
{
return 256;
}

static struct fb_tile_ops s3fb_tile_ops = {
.fb_settile = svga_settile,
.fb_tilecopy = svga_tilecopy,
.fb_tilefill = svga_tilefill,
.fb_tileblit = svga_tileblit,
.fb_tilecursor = svga_tilecursor,
.fb_get_tilemax = s3fb_get_tilemax,
};

static struct fb_tile_ops s3fb_fast_tile_ops = {
Expand All @@ -199,6 +203,7 @@ static struct fb_tile_ops s3fb_fast_tile_ops = {
.fb_tilefill = svga_tilefill,
.fb_tileblit = svga_tileblit,
.fb_tilecursor = svga_tilecursor,
.fb_get_tilemax = s3fb_get_tilemax,
};


Expand Down

0 comments on commit c5181cb

Please sign in to comment.