summaryrefslogtreecommitdiff
path: root/drivers/char/agp
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas@tungstengraphics.com>2006-12-27 13:16:49 +0100
committerDave Jones <davej@redhat.com>2006-12-28 22:24:45 -0500
commit7f02d687b44aba0cfc393102ea1ccc78eadf8a04 (patch)
tree8370a17d4132ebda939701d816b3ee738a72ef52 /drivers/char/agp
parentc41e0deb50c44f9d119c2268f1be05e6a6bb5772 (diff)
[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>
Diffstat (limited to 'drivers/char/agp')
-rw-r--r--drivers/char/agp/intel-agp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/agp/intel-agp.c b/drivers/char/agp/intel-agp.c
index ccb8018b831f..ab0a9c0ad7c0 100644
--- a/drivers/char/agp/intel-agp.c
+++ b/drivers/char/agp/intel-agp.c
@@ -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;
nfrastructureJosh Poimboeuf 2020-08-05modules: inherit TAINT_PROPRIETARY_MODULEChristoph Hellwig 2020-08-01modules: return licensing information from find_symbolChristoph Hellwig 2020-08-01modules: rename the licence field in struct symsearch to licenseChristoph Hellwig 2020-08-01modules: mark each_symbol_section staticChristoph Hellwig 2020-08-01modules: mark find_symbol staticChristoph Hellwig 2020-08-01modules: mark ref_module staticChristoph Hellwig 2020-06-04Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/liv...Linus Torvalds 2020-05-19kprobes: Prevent probes in .noinstr.text sectionThomas Gleixner 2020-05-12kprobes: Support NOKPROBE_SYMBOL() in modulesMasami Hiramatsu 2020-05-12kprobes: Support __kprobes blacklist in modulesMasami Hiramatsu 2020-05-08module: Make module_enable_ro() static againJosh Poimboeuf 2020-05-08module: Remove module_disable_ro()Josh Poimboeuf