summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/controller/dwc_otg.c
diff options
context:
space:
mode:
authorhselasky <hselasky@FreeBSD.org>2013-01-30 16:05:54 +0000
committerhselasky <hselasky@FreeBSD.org>2013-01-30 16:05:54 +0000
commitb7433e15c3ef10d95759121d1e726ea9864da8a3 (patch)
treef33c6466c2ca5f46906b6d9c0cfb88e7195235d6 /sys/dev/usb/controller/dwc_otg.c
parent07f6ed056f5894a455fd52e2158b58144ecdca68 (diff)
downloadFreeBSD-src-b7433e15c3ef10d95759121d1e726ea9864da8a3.zip
FreeBSD-src-b7433e15c3ef10d95759121d1e726ea9864da8a3.tar.gz
Use string literals in string descriptors for marginally
better readability. Submitted by: Christoph Mallon
Diffstat (limited to 'sys/dev/usb/controller/dwc_otg.c')
-rw-r--r--sys/dev/usb/controller/dwc_otg.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/usb/controller/dwc_otg.c b/sys/dev/usb/controller/dwc_otg.c
index 77dda2b..d08b3d9 100644
--- a/sys/dev/usb/controller/dwc_otg.c
+++ b/sys/dev/usb/controller/dwc_otg.c
@@ -3492,12 +3492,10 @@ static const struct usb_hub_descriptor_min dwc_otg_hubd = {
};
#define STRING_VENDOR \
- 'D', 0, 'W', 0, 'C', 0, 'O', 0, 'T', 0, 'G', 0
+ "D\0W\0C\0O\0T\0G"
#define STRING_PRODUCT \
- 'O', 0, 'T', 0, 'G', 0, ' ', 0, 'R', 0, \
- 'o', 0, 'o', 0, 't', 0, ' ', 0, 'H', 0, \
- 'U', 0, 'B', 0,
+ "O\0T\0G\0 \0R\0o\0o\0t\0 \0H\0U\0B"
USB_MAKE_STRING_DESC(STRING_VENDOR, dwc_otg_vendor);
USB_MAKE_STRING_DESC(STRING_PRODUCT, dwc_otg_product);
OpenPOWER on IntegriCloud