aboutsummaryrefslogtreecommitdiff
path: root/src/include/cpu
diff options
context:
space:
mode:
authorMyles Watson <mylesgw@gmail.com>2010-03-11 21:34:27 +0000
committerMyles Watson <mylesgw@gmail.com>2010-03-11 21:34:27 +0000
commited15220b87d298088a074747b24e212c23333e33 (patch)
tree08baf8485e130591af1edd889333f3cef998c01c /src/include/cpu
parentbc259d09d342f09987c65290422009615a8287a7 (diff)
Replace clear_memory with memset.
Replace set_init_ram_access with the call to set_var_mtrr. Remove unused #include statments. Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Patrick Georgi <patrick.georgi@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5201 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include/cpu')
-rw-r--r--src/include/cpu/x86/mem.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/include/cpu/x86/mem.h b/src/include/cpu/x86/mem.h
deleted file mode 100644
index 530c653277..0000000000
--- a/src/include/cpu/x86/mem.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef CPU_X86_MEM_H
-#define CPU_X86_MEM_H
-
-/* Optimized generic x86 assembly for clearing memory */
-static inline void clear_memory(void *addr, unsigned long size)
-{
- asm volatile(
- "cld \n\t"
- "rep; stosl\n\t"
- : /* No outputs */
- : "a" (0), "D" (addr), "c" (size>>2)
- );
-
-}
-
-#endif /* CPU_X86_MEM_H */