From: Randy Dunlap Date: Sun, 25 Jun 2006 12:48:59 +0000 (-0700) Subject: [PATCH] kernel-doc for lib/crc*.c X-Git-Tag: v2.6.18-rc1~910 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f72100c01dd31d769097c58874e8ab1e70b2518;p=pandora-kernel.git [PATCH] kernel-doc for lib/crc*.c Make kernel-doc corrections & additions to lib/crc*.c. Add crc functions to kernel-api.tmpl in DocBook. Signed-off-by: Randy Dunlap Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/Documentation/DocBook/kernel-api.tmpl b/Documentation/DocBook/kernel-api.tmpl index 428c217d9e87..82d0cdcabc31 100644 --- a/Documentation/DocBook/kernel-api.tmpl +++ b/Documentation/DocBook/kernel-api.tmpl @@ -129,6 +129,12 @@ X!Ilib/string.c Command-line Parsing !Elib/cmdline.c + + CRC Functions +!Elib/crc16.c +!Elib/crc32.c +!Elib/crc-ccitt.c + 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); /** * crc_ccitt - recompute the CRC for the data buffer - * @crc - previous CRC value - * @buffer - data pointer - * @len - number of bytes in the buffer + * @crc: previous CRC value + * @buffer: data pointer + * @len: number of bytes in the buffer */ u16 crc_ccitt(u16 crc, u8 const *buffer, size_t len) { Reading git-diff-tree failed