Make not modified array const instead of static. gcc generates
the very same code though.
This commit is contained in:
parent
33b739ad9e
commit
38958f7998
|
@ -45,7 +45,7 @@ static u32
|
||||||
calc_CRC16( u32 start, const u8 *data, int count) {
|
calc_CRC16( u32 start, const u8 *data, int count) {
|
||||||
int i,j;
|
int i,j;
|
||||||
u32 crc = start & 0xffff;
|
u32 crc = start & 0xffff;
|
||||||
static u16 val[] = { 0xC0C1,0xC181,0xC301,0xC601,0xCC01,0xD801,0xF001,0xA001 };
|
const u16 val[8] = { 0xC0C1,0xC181,0xC301,0xC601,0xCC01,0xD801,0xF001,0xA001 };
|
||||||
for(i = 0; i < count; i++)
|
for(i = 0; i < count; i++)
|
||||||
{
|
{
|
||||||
crc = crc ^ data[i];
|
crc = crc ^ data[i];
|
||||||
|
|
Loading…
Reference in New Issue