dect
/
linux-2.6
Archived
13
0
Fork 0

edac: remove the second argument of k[un]map_atomic()

Signed-off-by: Cong Wang <amwang@redhat.com>
This commit is contained in:
Cong Wang 2011-11-25 23:14:19 +08:00 committed by Cong Wang
parent 237f259ce2
commit 4e5df7ca30
1 changed files with 2 additions and 2 deletions

View File

@ -620,13 +620,13 @@ static void edac_mc_scrub_block(unsigned long page, unsigned long offset,
if (PageHighMem(pg))
local_irq_save(flags);
virt_addr = kmap_atomic(pg, KM_BOUNCE_READ);
virt_addr = kmap_atomic(pg);
/* Perform architecture specific atomic scrub operation */
atomic_scrub(virt_addr + offset, size);
/* Unmap and complete */
kunmap_atomic(virt_addr, KM_BOUNCE_READ);
kunmap_atomic(virt_addr);
if (PageHighMem(pg))
local_irq_restore(flags);