diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-02-18 15:39:21 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-02-19 11:10:05 -0500 |
commit | f150c837041f708dbcffcf39ebc73922a57a0209 (patch) | |
tree | 571e6c0775276e89420decdda8ca4dce139147be | |
parent | ca53735a4cd6cc8159e1a9515446e81230dc5b27 (diff) | |
download | u-boot-imx-f150c837041f708dbcffcf39ebc73922a57a0209.zip u-boot-imx-f150c837041f708dbcffcf39ebc73922a57a0209.tar.gz u-boot-imx-f150c837041f708dbcffcf39ebc73922a57a0209.tar.bz2 |
cosmetic: FIT: fix a strange comment
There is a strange comment in fit_image_load().
This function can be used for loading Kernel Image, FDT
as well as ramdisk.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | common/image-fit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/image-fit.c b/common/image-fit.c index cf4b67e..b94a3fe 100644 --- a/common/image-fit.c +++ b/common/image-fit.c @@ -1500,7 +1500,7 @@ int fit_image_load(bootm_headers_t *images, const char *prop_name, ulong addr, } bootstage_mark(bootstage_id + BOOTSTAGE_SUB_FORMAT_OK); if (fit_uname) { - /* get ramdisk component image node offset */ + /* get FIT component image node offset */ bootstage_mark(bootstage_id + BOOTSTAGE_SUB_UNIT_NAME); noffset = fit_image_get_node(fit, fit_uname); } else { |