From: Heinrich Schuchardt Date: Mon, 1 Jan 2018 20:31:58 +0000 (+0100) Subject: fs/fat: remove distractive message in file_fat_read_at() X-Git-Tag: v2018.03-rc1~140 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d2f715802833d636513dcd3c156632e35bd04454;p=platform%2Fkernel%2Fu-boot.git fs/fat: remove distractive message in file_fat_read_at() The message "reading %s\n" may be interesting when debugging but otherwise it is superfluous. Only output the message when debugging. Signed-off-by: Heinrich Schuchardt Reviewed-by: Simon Glass --- diff --git a/fs/fat/fat.c b/fs/fat/fat.c index d16883f..1283818 100644 --- a/fs/fat/fat.c +++ b/fs/fat/fat.c @@ -1106,7 +1106,7 @@ int file_fat_read_at(const char *filename, loff_t pos, void *buffer, if (ret) goto out_free_both; - printf("reading %s\n", filename); + debug("reading %s\n", filename); ret = get_contents(&fsdata, itr->dent, pos, buffer, maxsize, actread); out_free_both: