Fix typo/compilation error with USB device DMA memory allocation is enabled

This commit is contained in:
Gregory Nutt
2013-07-12 07:09:24 -06:00
parent c6b141d190
commit 352c313fa7
4 changed files with 26 additions and 24 deletions
-2
View File
@@ -99,8 +99,6 @@ static uint16_t crc16_tab[256] =
0x6e17, 0x7e36, 0x4e55, 0x5e74, 0x2e93, 0x3eb2, 0x0ed1, 0x1ef0
};
#define updcrc(cp, crc) ( crc16_tab[((crc >> 8) & 255)] ^ (crc << 8) ^ cp)
/************************************************************************************************
* Public Functions
************************************************************************************************/