]> Git Repo - J-u-boot.git/blobdiff - lib/physmem.c
efi_loader: efi_dp_from_lo() should skip VenMedia node
[J-u-boot.git] / lib / physmem.c
index 0f035edcbe5025c833bcdd318edecc401b6186c1..fc90ce4d7cfd092c1ad71196226e0a03130cd11f 100644 (file)
@@ -9,16 +9,17 @@
  */
 
 #include <common.h>
+#include <log.h>
+#include <mapmem.h>
 #include <physmem.h>
+#include <linux/compiler.h>
 
-static phys_addr_t __arch_phys_memset(phys_addr_t s, int c, phys_size_t n)
+phys_addr_t __weak arch_phys_memset(phys_addr_t s, int c, phys_size_t n)
 {
-       void *s_ptr = (void *)(uintptr_t)s;
+       void *s_ptr = map_sysmem(s, n);
 
        assert(((phys_addr_t)(uintptr_t)s) == s);
        assert(((phys_addr_t)(uintptr_t)(s + n)) == s + n);
+
        return (phys_addr_t)(uintptr_t)memset(s_ptr, c, n);
 }
-
-phys_addr_t arch_phys_memset(phys_addr_t s, int c, phys_size_t n)
-       __attribute__((weak, alias("__arch_phys_memset")));
This page took 0.024728 seconds and 4 git commands to generate.