The patch titled nvidiafb: Add support for Geforce 6100 and related chipsets has been added to the -mm tree. Its filename is nvidiafb-add-support-for-geforce-6100-and-related-chipsets.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: "Antonino A. Daplas" <adaplas@xxxxxxxxx> Add support for Geforce 6100 and related chipsets (PCI device id 0x024x) Signed-off-by: Antonino Daplas <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/nvidia/nv_hw.c | 10 ++++++++-- drivers/video/nvidia/nvidia.c | 1 + 2 files changed, 9 insertions(+), 2 deletions(-) diff -puN drivers/video/nvidia/nv_hw.c~nvidiafb-add-support-for-geforce-6100-and-related-chipsets drivers/video/nvidia/nv_hw.c --- 25/drivers/video/nvidia/nv_hw.c~nvidiafb-add-support-for-geforce-6100-and-related-chipsets Tue May 9 12:53:19 2006 +++ 25-akpm/drivers/video/nvidia/nv_hw.c Tue May 9 12:53:19 2006 @@ -886,7 +886,10 @@ void NVCalcStateExt(struct nvidia_par *p case NV_ARCH_20: case NV_ARCH_30: default: - if (((par->Chipset & 0xffff) == 0x01A0) || + if ((par->Chipset & 0xfff0) == 0x0240) { + state->arbitration0 = 256; + state->arbitration1 = 0x0480; + } else if (((par->Chipset & 0xffff) == 0x01A0) || ((par->Chipset & 0xffff) == 0x01f0)) { nForceUpdateArbitrationSettings(VClk, pixelDepth * 8, @@ -1235,6 +1238,7 @@ void NVLoadStateExt(struct nvidia_par *p break; case 0x0160: case 0x01D0: + case 0x0240: NV_WR32(par->PMC, 0x1700, NV_RD32(par->PFB, 0x020C)); NV_WR32(par->PMC, 0x1704, 0); @@ -1359,7 +1363,9 @@ void NVLoadStateExt(struct nvidia_par *p if(((par->Chipset & 0xfff0) != 0x0160) && ((par->Chipset & 0xfff0) - != 0x0220)) + != 0x0220) && + ((par->Chipset & 0xfff0) + != 0x240)) NV_WR32(par->PGRAPH, 0x6900 + i*4, NV_RD32(par->PFB, diff -puN drivers/video/nvidia/nvidia.c~nvidiafb-add-support-for-geforce-6100-and-related-chipsets drivers/video/nvidia/nvidia.c --- 25/drivers/video/nvidia/nvidia.c~nvidiafb-add-support-for-geforce-6100-and-related-chipsets Tue May 9 12:53:19 2006 +++ 25-akpm/drivers/video/nvidia/nvidia.c Tue May 9 12:53:19 2006 @@ -1238,6 +1238,7 @@ static u32 __devinit nvidia_get_arch(str case 0x0210: case 0x0220: case 0x0230: + case 0x0240: case 0x0290: case 0x0390: arch = NV_ARCH_40; _ Patches currently in -mm which might be from adaplas@xxxxxxxxx are origin.patch savagefb-allocate-space-for-current-and-saved-register.patch savagefb-add-state-save-and_restore-hooks.patch savagefb-add-state-save-and_restore-hooks-fix.patch fbdev-more-accurate-sync-range-extrapolation.patch nvidiafb-revise-pci_device_id-table.patch atyfb-fix-hardware-cursor-handling.patch atyfb-remove-unneeded-calls-to-wait_for_idle.patch atyfb-set-correct-acceleration-flags.patch epson1355fb-update-platform-code.patch vesafb-update-platform-code.patch vfb-update-platform-code.patch vga16fb-update-platform-code.patch fbdev-static-pseudocolor-with-depth-less-than-4-does.patch savagefb-whitespace-cleanup.patch fbdev-firmware-edid-fixes.patch nvidiafb-add-support-for-geforce-6100-and-related-chipsets.patch intelfb-use-firmware-edid-for-mode-database.patch vesafb-fix-return-code-of-vesafb_setcolreg.patch vesafb-prefer-vga-registers-over-pmi.patch atyfb-fix-dead-code.patch fbdev-coverity-bug-85.patch fbdev-coverity-bug-90.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