The patch titled s3fb: implement fb_get_tilemax() has been removed from the -mm tree. Its filename was s3fb-implement-fb_get_tilemax.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: s3fb: implement fb_get_tilemax() From: "Antonino A. Daplas" <adaplas@xxxxxxxxx> Implement fb_get_tilemax(). It just returns 256. Signed-off-by: Antonino Daplas <adaplas@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/s3fb.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff -puN drivers/video/s3fb.c~s3fb-implement-fb_get_tilemax drivers/video/s3fb.c --- a/drivers/video/s3fb.c~s3fb-implement-fb_get_tilemax +++ a/drivers/video/s3fb.c @@ -183,7 +183,10 @@ static void s3fb_settile_fast(struct fb_ } } - +static int s3fb_get_tilemax(struct fb_info *info) +{ + return 256; +} static struct fb_tile_ops s3fb_tile_ops = { .fb_settile = svga_settile, @@ -191,6 +194,7 @@ static struct fb_tile_ops s3fb_tile_ops .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 = { @@ -199,6 +203,7 @@ static struct fb_tile_ops s3fb_fast_tile .fb_tilefill = svga_tilefill, .fb_tileblit = svga_tileblit, .fb_tilecursor = svga_tilecursor, + .fb_get_tilemax = s3fb_get_tilemax, }; _ Patches currently in -mm which might be from adaplas@xxxxxxxxx are origin.patch vt8623fb-new-framebuffer-driver-for-via-vt8623.patch vt8623fb-fix-compile-warnings.patch vt8623fb-fix-compile-error-if-config_mtrr=n.patch arkfb-new-framebuffer-driver-for-ark-logic-cards.patch arkfb-fix-compiler-warnings.patch arkfb-fix-compile-error-if-config_mtrr=n.patch arkfb-new-framebuffer-driver-for-ark-logic-cards-fix.patch svgalib-move-fb_get_caps-to-svgalib.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html