diff options
Diffstat (limited to 'cpu/mpc8260/bedbug_603e.c')
| -rw-r--r-- | cpu/mpc8260/bedbug_603e.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/cpu/mpc8260/bedbug_603e.c b/cpu/mpc8260/bedbug_603e.c index 9c29b351d..be09cfb5c 100644 --- a/cpu/mpc8260/bedbug_603e.c +++ b/cpu/mpc8260/bedbug_603e.c @@ -81,7 +81,7 @@ void bedbug603e_do_break (cmd_tbl_t *cmdtp, int flag, int argc,    {      if( bug_ctx.hw_debug_enabled == 0 )      { -      printf( "No breakpoints enabled\n" ); +      puts ( "No breakpoints enabled\n" );        return;      } @@ -105,7 +105,7 @@ void bedbug603e_do_break (cmd_tbl_t *cmdtp, int flag, int argc,        printf( "Breakpoint [%d]: ", which_bp );        if( (addr & 0x00000002) == 0 ) -	printf( "NOT SET\n" ); +	puts ( "NOT SET\n" );        else  	disppc( (unsigned char *)(addr & 0xFFFFFFFC), 0, 1, bedbug_puts, F_RADHEX );      } @@ -183,7 +183,7 @@ int bedbug603e_set( int which_bp, unsigned long addr )    if(( addr & 0x00000003 ) != 0 )    { -    printf( "Breakpoints must be on a 32 bit boundary\n" ); +    puts ( "Breakpoints must be on a 32 bit boundary\n" );      return 0;    } @@ -191,7 +191,7 @@ int bedbug603e_set( int which_bp, unsigned long addr )    if(( bug_ctx.find_empty ) && ( !which_bp ) &&       ( which_bp = (*bug_ctx.find_empty)()) == 0 )    { -    printf( "All breakpoints in use\n" ); +    puts ( "All breakpoints in use\n" );      return 0;    } |