Commit b58f6ca1 authored by Raymond Knopp's avatar Raymond Knopp

removed >>8 on intel 24-bit CRC result (it is done outside).

parent 689df26f
......@@ -167,7 +167,7 @@ unsigned int crc24a (unsigned char * inptr,
return crc;
#else
return crc32_calc_pclmulqdq(inptr, octetlen, 0,
&lte_crc24a_pclmulqdq) >> 8;
&lte_crc24a_pclmulqdq);
#endif
}
......@@ -201,7 +201,7 @@ unsigned int crc24b (unsigned char * inptr,
return crc;
#else
return crc32_calc_pclmulqdq(inptr, octetlen, 0,
&lte_crc24b_pclmulqdq) >> 8;
&lte_crc24b_pclmulqdq);
#endif
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment