blob: 4320a47d4c887bdb511491634ffd8f8d0fc39ddd [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Charles Manningabbc67e2014-05-14 14:45:00 +12002/*
3 * Copyright 2012 Freescale Semiconductor, Inc.
Charles Manningabbc67e2014-05-14 14:45:00 +12004 */
5
6#ifndef PBLCRC32_H
7#define PBLCRC32_H
8
9#include <stdint.h>
10uint32_t pbl_crc32(uint32_t in_crc, const char *buf, uint32_t len);
11
12#endif