diff options
author | wdenk <wdenk> | 2004-06-09 12:42:26 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-06-09 12:42:26 +0000 |
commit | aa5590b66f17a157499c71c0aa743418715534d1 (patch) | |
tree | d7230197f759212a48f7e39dc1be9d1077cc801a /common/cmd_console.c | |
parent | 48abe7bfab14c1e9bd4a9a1f9d2e094b6d16773c (diff) | |
download | u-boot-aa5590b66f17a157499c71c0aa743418715534d1.tar.gz u-boot-aa5590b66f17a157499c71c0aa743418715534d1.tar.xz u-boot-aa5590b66f17a157499c71c0aa743418715534d1.zip |
Patch by Thomas Viehweger, 14 May 2004:
- flash.h: more flash types added
- immap_8260.h: some bits added (useful for RMII)
- cmd_coninfo.c: typo corrected, printf -> puts
- reduced size by replacing spaces with tab
Diffstat (limited to 'common/cmd_console.c')
-rw-r--r-- | common/cmd_console.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_console.c b/common/cmd_console.c index 912234b4fa..1bd3709bd6 100644 --- a/common/cmd_console.c +++ b/common/cmd_console.c @@ -37,7 +37,7 @@ int do_coninfo (cmd_tbl_t * cmd, int flag, int argc, char *argv[]) /* Scan for valid output and input devices */ - printf ("List of available devices:\n"); + puts ("List of available devices:\n"); for (i = 1; i <= ListNumItems (devlist); i++) { device_t *dev = ListGetPtrToItem (devlist, i); @@ -64,7 +64,7 @@ int do_coninfo (cmd_tbl_t * cmd, int flag, int argc, char *argv[]) U_BOOT_CMD( coninfo, 3, 1, do_coninfo, - "coninfo - print console devices and informations\n", + "coninfo - print console devices and information\n", "" ); |