The patch titled change rivafb_remove to __devexit has been removed from the -mm tree. Its filename was change-rivafb_remove-to-__devexit.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: change rivafb_remove to __devexit From: Prarit Bhargava <prarit@xxxxxxxxxx> Change rivafb_remove to __deviexit to fix MODPOST warnings: WARNING: drivers/video/riva/rivafb.o - Section mismatch: reference to .exit.text:rivafb_remove from .data.rel.local after 'rivafb_driver' (at offset 0x28) Signed-off-by: Prarit Bhargava <prarit@xxxxxxxxxx> Acked-by: James Simmons <jsimmons@xxxxxxxxxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/riva/fbdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/video/riva/fbdev.c~change-rivafb_remove-to-__devexit drivers/video/riva/fbdev.c --- a/drivers/video/riva/fbdev.c~change-rivafb_remove-to-__devexit +++ a/drivers/video/riva/fbdev.c @@ -2104,7 +2104,7 @@ err_ret: return ret; } -static void __exit rivafb_remove(struct pci_dev *pd) +static void __devexit rivafb_remove(struct pci_dev *pd) { struct fb_info *info = pci_get_drvdata(pd); struct riva_par *par = info->par; @@ -2185,7 +2185,7 @@ static struct pci_driver rivafb_driver = .name = "rivafb", .id_table = rivafb_pci_tbl, .probe = rivafb_probe, - .remove = __exit_p(rivafb_remove), + .remove = __devexit_p(rivafb_remove), }; _ Patches currently in -mm which might be from prarit@xxxxxxxxxx are origin.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