From 083337441ac77180826886650e2208f8b699a2f8 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Mon, 2 Sep 2019 14:47:20 -0700 Subject: [PATCH] Remove extra whitespace. --- litex/soc/software/libbase/crc16.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/litex/soc/software/libbase/crc16.c b/litex/soc/software/libbase/crc16.c index df9ed09eb..82e3102b1 100644 --- a/litex/soc/software/libbase/crc16.c +++ b/litex/soc/software/libbase/crc16.c @@ -38,11 +38,11 @@ static const unsigned int crc16_table[256] = { unsigned short crc16(const unsigned char *buffer, int len) { unsigned short crc; - + crc = 0; while(len-- > 0) crc = crc16_table[((crc >> 8) ^ (*buffer++)) & 0xFF] ^ (crc << 8); - + return crc; } #else @@ -57,4 +57,4 @@ unsigned short crc16(const unsigned char* data_p, int length) { } return crc; } -#endif \ No newline at end of file +#endif