diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2015-02-06 02:42:00 +0300 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-03-11 18:19:37 +0300 |
commit | fa84acf0f6142e7f35da785e25ee978518ff21ac (patch) | |
tree | 0078d27100f67a865ac0cbd7d8f47c9f40de8345 /drivers | |
parent | 112bf24471b50f806cbcbead7bd485da70401b83 (diff) | |
download | linux-fa84acf0f6142e7f35da785e25ee978518ff21ac.tar.xz |
usb: gadget: dummy-hcd: Remove utf8 from format string
Not everybody uses a utf8 locale (unfortunately), so let's avoid
non-ascii characters in the kernel log. Replace the 3-byte utf8
sequence with a 3-byte ascii equivalent.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/gadget/udc/dummy_hcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/udc/dummy_hcd.c b/drivers/usb/gadget/udc/dummy_hcd.c index 8dda48445f6f..7592db7824c6 100644 --- a/drivers/usb/gadget/udc/dummy_hcd.c +++ b/drivers/usb/gadget/udc/dummy_hcd.c @@ -2631,7 +2631,7 @@ static int __init init(void) return -EINVAL; if (mod_data.num < 1 || mod_data.num > MAX_NUM_UDC) { - pr_err("Number of emulated UDC must be in range of 1…%d\n", + pr_err("Number of emulated UDC must be in range of 1...%d\n", MAX_NUM_UDC); return -EINVAL; } |