diff options
author | wdenk <wdenk> | 2004-03-23 22:14:11 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-03-23 22:14:11 +0000 |
commit | 4b9206ed51a3e3dc06dca2a3930a24e4f0025f3d (patch) | |
tree | 2eb73ab74a66356c52d588bb06f803af55897e18 /cpu/mpc8260/bedbug_603e.c | |
parent | 109c0e3ad32428dd65ed89f882faf59e30132494 (diff) | |
download | u-boot-imx-4b9206ed51a3e3dc06dca2a3930a24e4f0025f3d.zip u-boot-imx-4b9206ed51a3e3dc06dca2a3930a24e4f0025f3d.tar.gz u-boot-imx-4b9206ed51a3e3dc06dca2a3930a24e4f0025f3d.tar.bz2 |
* Patches by Thomas Viehweger, 16 Mar 2004:
- show PCI clock frequency on MPC8260 systems
- add FCC_PSMR_RMII flag for HiP7 processors
- in do_jffs2_fsload(), take load address from load_addr if not set
explicit, update load_addr otherwise
- replaced printf by putc/puts when no formatting is needed
(smaller code size, faster execution)
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 9c29b35..be09cfb 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; } |