All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] lib/physmem.c: Switch to __weak for arch_phys_memset
@ 2016-03-27 18:06 Tom Rini
  2016-04-02  1:58 ` [U-Boot] " Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Tom Rini @ 2016-03-27 18:06 UTC (permalink / raw)
  To: u-boot

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>
---
 lib/physmem.c |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/lib/physmem.c b/lib/physmem.c
index 0f035ed..f21ac24 100644
--- a/lib/physmem.c
+++ b/lib/physmem.c
@@ -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")));
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot] lib/physmem.c: Switch to __weak for arch_phys_memset
  2016-03-27 18:06 [U-Boot] [PATCH] lib/physmem.c: Switch to __weak for arch_phys_memset Tom Rini
@ 2016-04-02  1:58 ` Tom Rini
  0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2016-04-02  1:58 UTC (permalink / raw)
  To: u-boot

On Sun, Mar 27, 2016 at 02:06:11PM -0400, Tom Rini wrote:

> 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>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160401/2c130bc7/attachment.sig>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-04-02  1:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-27 18:06 [U-Boot] [PATCH] lib/physmem.c: Switch to __weak for arch_phys_memset Tom Rini
2016-04-02  1:58 ` [U-Boot] " Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.