From: Wolfgang Denk Date: Thu, 25 Mar 2010 13:07:23 +0000 (+0100) Subject: cmd_usb.c: print debug messages only when DEBUG is defined X-Git-Tag: v2010.03-rc3~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=060f28532b09dd3d2c78423bdd809ac768a27629;p=kernel%2Fu-boot.git cmd_usb.c: print debug messages only when DEBUG is defined Signed-off-by: Wolfgang Denk --- diff --git a/common/cmd_usb.c b/common/cmd_usb.c index 9de515c..6b5c582 100644 --- a/common/cmd_usb.c +++ b/common/cmd_usb.c @@ -601,7 +601,7 @@ int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) ok++; if (devno) printf("\n"); - printf("print_part of %x\n", devno); + debug("print_part of %x\n", devno); print_part(stor_dev); } } @@ -610,7 +610,7 @@ int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) stor_dev = usb_stor_get_dev(devno); if (stor_dev->type != DEV_TYPE_UNKNOWN) { ok++; - printf("print_part of %x\n", devno); + debug("print_part of %x\n", devno); print_part(stor_dev); } }