commit | 93e7dfda25327f6549f8ecc79b137ea423d16975 | [log] [tgz] |
---|---|---|
author | Stefan Roese <sr@denx.de> | Thu Sep 02 17:00:18 2021 +0200 |
committer | Tom Rini <trini@konsulko.com> | Fri Sep 24 07:48:06 2021 -0400 |
tree | 9c4c2bd0a7c9c956d90a838c76cb77d595fc660e | |
parent | 27c3e95446cb580abf90480345781f497a756299 [diff] |
arm64: memset-arm64: Use simple memset when cache is disabled The optimized memset uses the dc opcode, which causes problems when the cache is disabled. This patch adds a check if the cache is disabled and uses a very simple memset implementation in this case. Otherwise the optimized version is used. Signed-off-by: Stefan Roese <sr@denx.de>