TESTS: Remove unused variable.

This commit is contained in:
Kelvin Lawson
2010-06-03 22:59:47 +01:00
parent 7f2b53dd61
commit 5635706d4b

View File

@@ -39,7 +39,6 @@ static ATOM_TIMER timer_cb[4];
/* Global test data */
static volatile uint32_t cb_order[4];
static int cb_cnt = 0;
static uint32_t cb_time[4];
/* Forward declarations */
@@ -165,9 +164,6 @@ static void testCallback (POINTER cb_data)
/* Store our callback order in cb_order[] */
cb_order[cb_cnt] = expected_order;
/* Store the current time for debug purposes */
cb_time[cb_cnt] = atomTimeGet();
/* Interrupts are locked out so we can modify cb_cnt without protection */
cb_cnt++;
}