mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
lib/physmem.c: Switch to __weak for arch_phys_memset
We normally use __weak rather than calling it out directly as an alias. Update this function to the normal method. Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
5735bca5f6
commit
65b3c6bbae
1 changed files with 2 additions and 4 deletions
|
@ -10,8 +10,9 @@
|
|||
|
||||
#include <common.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;
|
||||
|
||||
|
@ -19,6 +20,3 @@ static phys_addr_t __arch_phys_memset(phys_addr_t s, int c, phys_size_t n)
|
|||
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")));
|
||||
|
|
Loading…
Reference in a new issue