The patch titled change nvidiafb_remove to __devexit has been added to the -mm tree. Its filename is change-nvidiafb_remove-to-__devexit.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: change nvidiafb_remove to __devexit From: Prarit Bhargava <prarit@xxxxxxxxxx> Change nvidiafb_remove to __devexit to fix MODPOST warnings: WARNING: drivers/video/nvidia/nvidiafb.o - Section mismatch: reference to .exit.text:nvidiafb_remove from .data.rel.local after 'nvidiafb_driver' (at offset 0x28) Signed-off-by: Prarit Bhargava <prarit@xxxxxxxxxx> Acked-By: James Simmons <jsimmons@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/nvidia/nvidia.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/video/nvidia/nvidia.c~change-nvidiafb_remove-to-__devexit drivers/video/nvidia/nvidia.c --- a/drivers/video/nvidia/nvidia.c~change-nvidiafb_remove-to-__devexit +++ a/drivers/video/nvidia/nvidia.c @@ -1347,7 +1347,7 @@ err_out: return -ENODEV; } -static void __exit nvidiafb_remove(struct pci_dev *pd) +static void __devexit nvidiafb_remove(struct pci_dev *pd) { struct fb_info *info = pci_get_drvdata(pd); struct nvidia_par *par = info->par; @@ -1433,7 +1433,7 @@ static struct pci_driver nvidiafb_driver .probe = nvidiafb_probe, .suspend = nvidiafb_suspend, .resume = nvidiafb_resume, - .remove = __exit_p(nvidiafb_remove), + .remove = __devexit_p(nvidiafb_remove), }; /* ------------------------------------------------------------------------- * _ Patches currently in -mm which might be from prarit@xxxxxxxxxx are change-__init-to-__devinit-for-isp116x_probe.patch change-__init-to-__devinit-in-2-rtc-drivers.patch change-nvidiafb_remove-to-__devexit.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