1
0
Fork 0
forked from len0rd/rockbox

Remove tabs.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29842 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2011-05-08 21:21:02 +00:00
parent 67f215032d
commit 9befc2e747
3 changed files with 14 additions and 14 deletions

View file

@ -490,16 +490,16 @@ void receive_timeout_isr(void)
/* generate the checksum */
unsigned char calc_checksum(unsigned char* p_msg, int digits)
{
int chk = 0;
int i;
for (i=0; i<digits; i++)
{
chk ^= p_msg[i];
}
chk = (chk+1) % 16;
return chk;
int chk = 0;
int i;
for (i=0; i<digits; i++)
{
chk ^= p_msg[i];
}
chk = (chk+1) % 16;
return chk;
}