The patch titled nvidiafb: fix unreachable code in nv10GetConfig has been removed from the -mm tree. Its filename was nvidiafb-fix-unreachable-code-in-nv10getconfig.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: nvidiafb: fix unreachable code in nv10GetConfig From: Nathan Lynch <ntl@xxxxxxxxx> Fix binary/logical operator typo which leads to unreachable code. Noticed while looking at other issues; I don't have the relevant hardware to test this. Signed-off-by: Nathan Lynch <ntl@xxxxxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxx> Acked-by: James Simmons <jsimmons@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/nvidia/nv_setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/nvidia/nv_setup.c~nvidiafb-fix-unreachable-code-in-nv10getconfig drivers/video/nvidia/nv_setup.c --- a/drivers/video/nvidia/nv_setup.c~nvidiafb-fix-unreachable-code-in-nv10getconfig +++ a/drivers/video/nvidia/nv_setup.c @@ -262,7 +262,7 @@ static void nv10GetConfig(struct nvidia_ #endif dev = pci_find_slot(0, 1); - if ((par->Chipset && 0xffff) == 0x01a0) { + if ((par->Chipset & 0xffff) == 0x01a0) { int amt = 0; pci_read_config_dword(dev, 0x7c, &amt); _ Patches currently in -mm which might be from ntl@xxxxxxxxx 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