diff options
author | Wolfgang Denk <wd@denx.de> | 2009-04-26 20:39:26 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-04-26 20:39:26 +0200 |
commit | 34b76a14f676bc6501c27a96564e4dfb4793f033 (patch) | |
tree | 8df54995f1ec49954f7027ab8263a2409c7a14c9 /lib_arm | |
parent | 4277f4de065b4daea4dc27420fc1bc131701291d (diff) | |
download | u-boot-imx-34b76a14f676bc6501c27a96564e4dfb4793f033.zip u-boot-imx-34b76a14f676bc6501c27a96564e4dfb4793f033.tar.gz u-boot-imx-34b76a14f676bc6501c27a96564e4dfb4793f033.tar.bz2 |
lib_arm/board.c: remove misleading "test-only" comment.
For a long time, the print_cpuinfo() declaration in lib_arm/board.c
had been marked as "test-only", which is plain wrong considering
current usage. Delete this misleading comment.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'lib_arm')
-rw-r--r-- | lib_arm/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c index 6847ea8..5d05d9b 100644 --- a/lib_arm/board.c +++ b/lib_arm/board.c @@ -258,7 +258,7 @@ static int arm_pci_init(void) */ typedef int (init_fnc_t) (void); -int print_cpuinfo (void); /* test-only */ +int print_cpuinfo (void); init_fnc_t *init_sequence[] = { cpu_init, /* basic cpu dependent setup */ |