[PATCH] nvidiafb: fix unreachable code in nv10GetConfig

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@pobox.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Acked-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Nathan Lynch and committed by Linus Torvalds d6e89cb6 ba8df43c

+1 -1
+1 -1
drivers/video/nvidia/nv_setup.c
··· 262 #endif 263 264 dev = pci_find_slot(0, 1); 265 - if ((par->Chipset && 0xffff) == 0x01a0) { 266 int amt = 0; 267 268 pci_read_config_dword(dev, 0x7c, &amt);
··· 262 #endif 263 264 dev = pci_find_slot(0, 1); 265 + if ((par->Chipset & 0xffff) == 0x01a0) { 266 int amt = 0; 267 268 pci_read_config_dword(dev, 0x7c, &amt);