commit | 7d1a666c05378ac155ae21cf34ce72ba66257f25 | [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 | 2b767e3339f475fb5cd48f9366a2c9157c99693f [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>