linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / lib / crc16.c
index 8737b08..011fe57 100644 (file)
@@ -47,12 +47,12 @@ u16 const crc16_table[256] = {
 EXPORT_SYMBOL(crc16_table);
 
 /**
- * crc16 - compute the CRC-16 for the data buffer
- * @crc:       previous CRC value
- * @buffer:    data pointer
- * @len:       number of bytes in the buffer
+ * Compute the CRC-16 for the data buffer
  *
- * Returns the updated CRC value.
+ * @param crc     previous CRC value
+ * @param buffer  data pointer
+ * @param len     number of bytes in the buffer
+ * @return        the updated CRC value
  */
 u16 crc16(u16 crc, u8 const *buffer, size_t len)
 {