diff options
Diffstat (limited to 'tools/pbl_crc32.h')
-rw-r--r-- | tools/pbl_crc32.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/pbl_crc32.h b/tools/pbl_crc32.h new file mode 100644 index 00000000000..4320a47d4c8 --- /dev/null +++ b/tools/pbl_crc32.h @@ -0,0 +1,12 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright 2012 Freescale Semiconductor, Inc. + */ + +#ifndef PBLCRC32_H +#define PBLCRC32_H + +#include <stdint.h> +uint32_t pbl_crc32(uint32_t in_crc, const char *buf, uint32_t len); + +#endif |