remove TAP_SCAN_BYTES macro

Use DIV_ROUND_UP(n, 8) instead of TAP_SCAN_BYTES macro.
This commit is contained in:
Zachary T Welch
2009-11-16 03:12:45 -08:00
parent a94748ec6d
commit 0535a92456
4 changed files with 9 additions and 11 deletions

View File

@@ -46,9 +46,6 @@
*/
#define DIM(x) (sizeof(x)/sizeof((x)[0]))
/** Calculate the number of bytes required to hold @a n TAP scan bits */
#define TAP_SCAN_BYTES(n) DIV_ROUND_UP(n, 8)
/*-----</Macros>-------------------------------------------------*/
/**