diff options
author | Bo Shen <voice.shen@atmel.com> | 2013-03-13 16:54:07 +0800 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-03-14 12:47:53 +0200 |
commit | 273daf2f2ab9f42d82f017b20fcf902ec8d7cffa (patch) | |
tree | 2ce408b4e50ced54819ada67c0009dbb80ee44b5 /drivers/usb | |
parent | db9e51617faad3a54d10b7cb340a82688ec0232d (diff) | |
download | linux-3.10-273daf2f2ab9f42d82f017b20fcf902ec8d7cffa.tar.gz linux-3.10-273daf2f2ab9f42d82f017b20fcf902ec8d7cffa.tar.bz2 linux-3.10-273daf2f2ab9f42d82f017b20fcf902ec8d7cffa.zip |
usb: gadget: u_serial: fix typo which cause build warning
fix typo error introduced by commit ea0e6276 (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>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/gadget/u_serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/u_serial.c b/drivers/usb/gadget/u_serial.c index c5034d9c946..b369292d4b9 100644 --- a/drivers/usb/gadget/u_serial.c +++ b/drivers/usb/gadget/u_serial.c @@ -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 */ |