Go to the documentation of this file.
22 #include <linux/list.h>
58 #ifdef CONFIG_REED_SOLOMON_ENC8
62 #ifdef CONFIG_REED_SOLOMON_DEC8
69 #ifdef CONFIG_REED_SOLOMON_ENC16
73 #ifdef CONFIG_REED_SOLOMON_DEC16
100 static inline int rs_modnn(
struct rs_control *rs,
int x)
102 while (x >= rs->
nn) {
104 x = (x >> rs->
mm) + (x & rs->
nn);