diff options
author | hselasky <hselasky@FreeBSD.org> | 2013-01-30 15:46:26 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2013-01-30 15:46:26 +0000 |
commit | 34829d74e1222ffb99ba5a0dc56d3a62c7813ca5 (patch) | |
tree | 7deb6aabb1fced511305bb7585dcf39efe030c3e /sys/dev/usb/controller/avr32dci.c | |
parent | 0fbe1630154e5d48b97c66259002053ea2c04768 (diff) | |
download | FreeBSD-src-34829d74e1222ffb99ba5a0dc56d3a62c7813ca5.zip FreeBSD-src-34829d74e1222ffb99ba5a0dc56d3a62c7813ca5.tar.gz |
Provide one global language string descriptor for
american english instead of giving each module its
own.
Submitted by: Christoph Mallon
Diffstat (limited to 'sys/dev/usb/controller/avr32dci.c')
-rw-r--r-- | sys/dev/usb/controller/avr32dci.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/dev/usb/controller/avr32dci.c b/sys/dev/usb/controller/avr32dci.c index 0828311..e0244f5 100644 --- a/sys/dev/usb/controller/avr32dci.c +++ b/sys/dev/usb/controller/avr32dci.c @@ -1505,9 +1505,6 @@ static const struct usb_hub_descriptor_min avr32dci_hubd = { .DeviceRemovable = {0}, /* port is removable */ }; -#define STRING_LANG \ - 0x09, 0x04, /* American English */ - #define STRING_VENDOR \ 'A', 0, 'V', 0, 'R', 0, '3', 0, '2', 0 @@ -1516,7 +1513,6 @@ static const struct usb_hub_descriptor_min avr32dci_hubd = { 'o', 0, 'o', 0, 't', 0, ' ', 0, 'H', 0, \ 'U', 0, 'B', 0, -USB_MAKE_STRING_DESC(STRING_LANG, avr32dci_langtab); USB_MAKE_STRING_DESC(STRING_VENDOR, avr32dci_vendor); USB_MAKE_STRING_DESC(STRING_PRODUCT, avr32dci_product); @@ -1719,8 +1715,8 @@ tr_handle_get_descriptor: case UDESC_STRING: switch (value & 0xff) { case 0: /* Language table */ - len = sizeof(avr32dci_langtab); - ptr = (const void *)&avr32dci_langtab; + len = sizeof(usb_string_lang_en); + ptr = (const void *)&usb_string_lang_en; goto tr_valid; case 1: /* Vendor */ |