projects
/
platform
/
kernel
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Makefile: Make u-boot.img the same as u-boot-dtb.img
[platform/kernel/u-boot.git]
/
tools
/
pbl_crc32.h
1
/*
2
* Copyright 2012 Freescale Semiconductor, Inc.
3
*
4
* SPDX-License-Identifier: GPL-2.0+
5
*/
6
7
#ifndef PBLCRC32_H
8
#define PBLCRC32_H
9
10
#include <stdint.h>
11
uint32_t pbl_crc32(uint32_t in_crc, const char *buf, uint32_t len);
12
13
#endif