]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
usb: gadget: mv_udc: fix typo in error message
authorTroy Kisky <troy.kisky@boundarydevices.com>
Thu, 26 Sep 2013 01:41:08 +0000 (18:41 -0700)
committerMarek Vasut <marex@denx.de>
Sun, 20 Oct 2013 21:42:39 +0000 (23:42 +0200)
Change 'nfo=' to 'info='

Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
drivers/usb/gadget/mv_udc.c

index e6700a80fd0962053021f95129f7a0e6a8133822..7bf70d1aa82a39fbcbae621204db5840452093b7 100644 (file)
@@ -366,8 +366,8 @@ static void handle_ep_complete(struct mv_ep *ep)
        mv_invalidate_qtd(num);
 
        if (item->info & 0xff)
-               printf("EP%d/%s FAIL nfo=%x pg0=%x\n",
-                       num, in ? "in" : "out", item->info, item->page0);
+               printf("EP%d/%s FAIL info=%x pg0=%x\n",
+                      num, in ? "in" : "out", item->info, item->page0);
 
        len = (item->info >> 16) & 0x7fff;