|
@@ -320,6 +320,7 @@ EXPORT_SYMBOL_GPL(encode_rs8);
|
|
* The syndrome and parity uses a uint16_t data type to enable
|
|
* The syndrome and parity uses a uint16_t data type to enable
|
|
* symbol size > 8. The calling code must take care of decoding of the
|
|
* symbol size > 8. The calling code must take care of decoding of the
|
|
* syndrome result and the received parity before calling this code.
|
|
* syndrome result and the received parity before calling this code.
|
|
|
|
+ * Returns the number of corrected bits or -EBADMSG for uncorrectable errors.
|
|
*/
|
|
*/
|
|
int decode_rs8(struct rs_control *rs, uint8_t *data, uint16_t *par, int len,
|
|
int decode_rs8(struct rs_control *rs, uint8_t *data, uint16_t *par, int len,
|
|
uint16_t *s, int no_eras, int *eras_pos, uint16_t invmsk,
|
|
uint16_t *s, int no_eras, int *eras_pos, uint16_t invmsk,
|
|
@@ -363,6 +364,7 @@ EXPORT_SYMBOL_GPL(encode_rs16);
|
|
* @corr: buffer to store correction bitmask on eras_pos
|
|
* @corr: buffer to store correction bitmask on eras_pos
|
|
*
|
|
*
|
|
* Each field in the data array contains up to symbol size bits of valid data.
|
|
* Each field in the data array contains up to symbol size bits of valid data.
|
|
|
|
+ * Returns the number of corrected bits or -EBADMSG for uncorrectable errors.
|
|
*/
|
|
*/
|
|
int decode_rs16(struct rs_control *rs, uint16_t *data, uint16_t *par, int len,
|
|
int decode_rs16(struct rs_control *rs, uint16_t *data, uint16_t *par, int len,
|
|
uint16_t *s, int no_eras, int *eras_pos, uint16_t invmsk,
|
|
uint16_t *s, int no_eras, int *eras_pos, uint16_t invmsk,
|