Skip to content

Commit

Permalink
x86: unify include/asm/cache_32/64.h
Browse files Browse the repository at this point in the history
Same file, except for whitespace, comment formatting and:

32-bit:	unsigned long *virt_addr = va;
64-bit: unsigned int *virt_addr = va;

Both can be safely replaced by:
	u32 i, *virt_addr = va;

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Thomas Gleixner authored and Thomas Gleixner committed Oct 17, 2007
1 parent 327c21b commit 1f7afb0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 40 deletions.
21 changes: 17 additions & 4 deletions include/asm-x86/edac.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
#ifdef CONFIG_X86_32
# include "edac_32.h"
#else
# include "edac_64.h"
#ifndef _ASM_X86_EDAC_H
#define _ASM_X86_EDAC_H

/* ECC atomic, DMA, SMP and interrupt safe scrub function */

static __inline__ void atomic_scrub(void *va, u32 size)
{
u32 i, *virt_addr = va;

/*
* Very carefully read and write to memory atomically so we
* are interrupt, DMA and SMP safe.
*/
for (i = 0; i < size / 4; i++, virt_addr++)
__asm__ __volatile__("lock; addl $0, %0"::"m"(*virt_addr));
}

#endif
18 changes: 0 additions & 18 deletions include/asm-x86/edac_32.h

This file was deleted.

18 changes: 0 additions & 18 deletions include/asm-x86/edac_64.h

This file was deleted.

0 comments on commit 1f7afb0

Please sign in to comment.