The patch titled hecubafb: kill sparse warnings has been removed from the -mm tree. Its filename was hecubafb-kill-sparse-warnings.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: hecubafb: kill sparse warnings From: "Antonino A. Daplas" <adaplas@xxxxxxxxx> The framebuffer memory is allocated from system RAM (vmalloc'ed). Add __force annotations. Signed-off-by: Antonino Daplas <adaplas@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/hecubafb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/video/hecubafb.c~hecubafb-kill-sparse-warnings drivers/video/hecubafb.c --- a/drivers/video/hecubafb.c~hecubafb-kill-sparse-warnings +++ a/drivers/video/hecubafb.c @@ -214,7 +214,7 @@ static void apollo_send_command(struct h static void hecubafb_dpy_update(struct hecubafb_par *par) { int i; - unsigned char *buf = par->info->screen_base; + unsigned char *buf = (unsigned char __force *)par->info->screen_base; apollo_send_command(par, 0xA0); @@ -303,7 +303,7 @@ static ssize_t hecubafb_write(struct fil if (count) { char *base_addr; - base_addr = info->screen_base; + base_addr = (char __force *)info->screen_base; count -= copy_from_user(base_addr + p, buf, count); *ppos += count; err = -EFAULT; @@ -409,7 +409,7 @@ static int __devexit hecubafb_remove(str if (info) { fb_deferred_io_cleanup(info); unregister_framebuffer(info); - vfree(info->screen_base); + vfree((void __force *)info->screen_base); framebuffer_release(info); } return 0; _ 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