David Brownell <david-b@pacbell.net> fix warnings
git-svn-id: svn://svn.berlios.de/openocd/trunk@2648 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
ed8fd94d7c
commit
69b8b5e0aa
|
@ -386,7 +386,8 @@ int arm11_run_instr_no_data(arm11_common_t * arm11, uint32_t * opcode, size_t co
|
||||||
if (flag)
|
if (flag)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
long long then;
|
long long then = 0;
|
||||||
|
|
||||||
if (i == 1000)
|
if (i == 1000)
|
||||||
{
|
{
|
||||||
then = timeval_ms();
|
then = timeval_ms();
|
||||||
|
@ -465,7 +466,8 @@ int arm11_run_instr_data_to_core(arm11_common_t * arm11, uint32_t opcode, uint32
|
||||||
|
|
||||||
JTAG_DEBUG("DTR Ready %d nRetry %d", Ready, nRetry);
|
JTAG_DEBUG("DTR Ready %d nRetry %d", Ready, nRetry);
|
||||||
|
|
||||||
long long then;
|
long long then = 0;
|
||||||
|
|
||||||
if (i == 1000)
|
if (i == 1000)
|
||||||
{
|
{
|
||||||
then = timeval_ms();
|
then = timeval_ms();
|
||||||
|
@ -499,7 +501,8 @@ int arm11_run_instr_data_to_core(arm11_common_t * arm11, uint32_t opcode, uint32
|
||||||
|
|
||||||
JTAG_DEBUG("DTR Data %08x Ready %d nRetry %d", Data, Ready, nRetry);
|
JTAG_DEBUG("DTR Data %08x Ready %d nRetry %d", Data, Ready, nRetry);
|
||||||
|
|
||||||
long long then;
|
long long then = 0;
|
||||||
|
|
||||||
if (i == 1000)
|
if (i == 1000)
|
||||||
{
|
{
|
||||||
then = timeval_ms();
|
then = timeval_ms();
|
||||||
|
@ -678,7 +681,8 @@ int arm11_run_instr_data_from_core(arm11_common_t * arm11, uint32_t opcode, uint
|
||||||
|
|
||||||
JTAG_DEBUG("DTR Data %08x Ready %d nRetry %d", Data, Ready, nRetry);
|
JTAG_DEBUG("DTR Data %08x Ready %d nRetry %d", Data, Ready, nRetry);
|
||||||
|
|
||||||
long long then;
|
long long then = 0;
|
||||||
|
|
||||||
if (i == 1000)
|
if (i == 1000)
|
||||||
{
|
{
|
||||||
then = timeval_ms();
|
then = timeval_ms();
|
||||||
|
|
Loading…
Reference in New Issue