commit | f7b845bfe0621d04f5f32caa14a5aaca799c904e | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Tue Jun 29 19:33:04 2021 -0400 |
committer | Tom Rini <trini@konsulko.com> | Fri Jul 09 12:15:41 2021 -0400 |
tree | 7f0b710993a08575e4b3c51dbe92b2e8d1ec2e90 | |
parent | 2359fa7a87848626bcbd3399e92c657595880cd7 [diff] |
arm: armv8: Fix warning about redeclaring global functions as weak As seen with clang-12: warning: __asm_invalidate_l3_dcache changed binding to STB_WEAK As we indeed use ENTRY and then declare the function weak manually. Use the WEAK declarative from <linux/linkage.h> instead. Signed-off-by: Tom Rini <trini@konsulko.com>