dect
/
linux-2.6
Archived
13
0
Fork 0

[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>
This commit is contained in:
Thomas Hellstrom 2006-12-27 13:16:49 +01:00 committed by Dave Jones
parent c41e0deb50
commit 7f02d687b4
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ insert:
mem->memory[i], mem->type),
intel_i810_private.registers+I810_PTE_BASE+(j*4));
}
readl(intel_i810_private.registers+I810_PTE_BASE+(j-1*4)); /* PCI Posting. */
readl(intel_i810_private.registers+I810_PTE_BASE+((j-1)*4)); /* PCI Posting. */
agp_bridge->driver->tlb_flush(mem);
return 0;