pbl_crc32.h 231 B

123456789101112
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright 2012 Freescale Semiconductor, Inc.
  4. */
  5. #ifndef PBLCRC32_H
  6. #define PBLCRC32_H
  7. #include <stdint.h>
  8. uint32_t pbl_crc32(uint32_t in_crc, const char *buf, uint32_t len);
  9. #endif