From 5635706d4b40bb4907536b51ffc1d15f4b5b250f Mon Sep 17 00:00:00 2001 From: Kelvin Lawson Date: Thu, 3 Jun 2010 22:59:47 +0100 Subject: [PATCH] TESTS: Remove unused variable. --- tests/timer7.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/timer7.c b/tests/timer7.c index f43b941..d2a7e54 100644 --- a/tests/timer7.c +++ b/tests/timer7.c @@ -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++; }