[AGPGART] Fix PCI-posting flush typo.

Unfortunately there was a typo in one of the patches I sent,
(The one now committed to the agpgart tree).
It may cause a bus error on i810 type hardware.

Signed-off-by: Thomas Hellstrom <thomas@tungstengraphics.com>
Signed-off-by: Dave Jones <davej@redhat.com>

authored by Thomas Hellstrom and committed by Dave Jones 7f02d687 c41e0deb

+1 -1
+1 -1
drivers/char/agp/intel-agp.c
··· 253 mem->memory[i], mem->type), 254 intel_i810_private.registers+I810_PTE_BASE+(j*4)); 255 } 256 - readl(intel_i810_private.registers+I810_PTE_BASE+(j-1*4)); /* PCI Posting. */ 257 258 agp_bridge->driver->tlb_flush(mem); 259 return 0;
··· 253 mem->memory[i], mem->type), 254 intel_i810_private.registers+I810_PTE_BASE+(j*4)); 255 } 256 + readl(intel_i810_private.registers+I810_PTE_BASE+((j-1)*4)); /* PCI Posting. */ 257 258 agp_bridge->driver->tlb_flush(mem); 259 return 0;