aboutsummaryrefslogtreecommitdiffstats
path: root/lib/crc-ccitt.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/crc-ccitt.c')
-rw-r--r--lib/crc-ccitt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/crc-ccitt.c b/lib/crc-ccitt.c
index 115d149af407..7f6dd68d2d09 100644
--- a/lib/crc-ccitt.c
+++ b/lib/crc-ccitt.c
@@ -53,9 +53,9 @@ EXPORT_SYMBOL(crc_ccitt_table);
53 53
54/** 54/**
55 * crc_ccitt - recompute the CRC for the data buffer 55 * crc_ccitt - recompute the CRC for the data buffer
56 * @crc - previous CRC value 56 * @crc: previous CRC value
57 * @buffer - data pointer 57 * @buffer: data pointer
58 * @len - number of bytes in the buffer 58 * @len: number of bytes in the buffer
59 */ 59 */
60u16 crc_ccitt(u16 crc, u8 const *buffer, size_t len) 60u16 crc_ccitt(u16 crc, u8 const *buffer, size_t len)
61{ 61{