Julian Hall | d635ad7 | 2022-09-20 15:50:35 +0100 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2022, Arm Limited. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | * | ||||
6 | */ | ||||
7 | |||||
8 | #include <common/crc32/crc32.h> | ||||
9 | #include <common/tf_crc32.h> | ||||
10 | |||||
11 | |||||
12 | uint32_t crc32(uint32_t crc, const unsigned char *buf, size_t size) | ||||
13 | { | ||||
14 | return tf_crc32(crc, buf, size); | ||||
15 | } |