Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

a few changes : boot.h , bit.h ,crc32 #103

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update crc32.h
changed a definition name
  • Loading branch information
burakkoken committed Jun 30, 2014
commit 0131d367fa05d8bf72f2c34140ce64a9b98b5278
2 changes: 1 addition & 1 deletion include/linux/crc32.h
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@

#define CRCPOLY32_BIGEND 0x04C11DB7 /* big endian poly. */
#define CRCPOLY32_LITEND 0xEDB88320 /* little endian poly.*/
#define CRCPOLY32_TENTRY 256 /* crc32 table entries */
#define CRC_TENTRY 256 /* crc32 table entries */
#endif

extern u32 crc32_le(u32 crc, unsigned char const *p, size_t len);