The patch titled nvidiafb: fix unreachable code in nv10GetConfig has been added to the -mm tree. Its filename is nvidiafb-fix-unreachable-code-in-nv10getconfig.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ 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> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/nvidia/nv_setup.c | 2 +- 1 files 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 nvidiafb-fix-unreachable-code-in-nv10getconfig.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