Skip to content

Commit

Permalink
usb: gadget: u_serial: fix typo which cause build warning
Browse files Browse the repository at this point in the history
fix typo error introduced by commit ea0e627 (usb: gadget: add
multiple definition guards) which causes the following build warning:

  warning: "pr_vdebug" redefined

Signed-off-by: Bo Shen <voice.shen@atmel.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
  • Loading branch information
Bo Shen authored and Felipe Balbi committed Mar 14, 2013
1 parent db9e516 commit 273daf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/usb/gadget/u_serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ static struct portmaster {
pr_debug(fmt, ##arg)
#endif /* pr_vdebug */
#else
#ifndef pr_vdebig
#ifndef pr_vdebug
#define pr_vdebug(fmt, arg...) \
({ if (0) pr_debug(fmt, ##arg); })
#endif /* pr_vdebug */
Expand Down

0 comments on commit 273daf2

Please sign in to comment.