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/uss820dci.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/uss820dci.c')
-rw-r--r-- | sys/dev/usb/controller/uss820dci.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/dev/usb/controller/uss820dci.c b/sys/dev/usb/controller/uss820dci.c index bb1d847..ffb6cc8 100644 --- a/sys/dev/usb/controller/uss820dci.c +++ b/sys/dev/usb/controller/uss820dci.c @@ -1808,9 +1808,6 @@ static const struct usb_hub_descriptor_min uss820dci_hubd = { .DeviceRemovable = {0}, /* port is removable */ }; -#define STRING_LANG \ - 0x09, 0x04, /* American English */ - #define STRING_VENDOR \ 'A', 0, 'G', 0, 'E', 0, 'R', 0, 'E', 0 @@ -1819,7 +1816,6 @@ static const struct usb_hub_descriptor_min uss820dci_hubd = { 'o', 0, 'o', 0, 't', 0, ' ', 0, 'H', 0, \ 'U', 0, 'B', 0, -USB_MAKE_STRING_DESC(STRING_LANG, uss820dci_langtab); USB_MAKE_STRING_DESC(STRING_VENDOR, uss820dci_vendor); USB_MAKE_STRING_DESC(STRING_PRODUCT, uss820dci_product); @@ -2021,8 +2017,8 @@ tr_handle_get_descriptor: case UDESC_STRING: switch (value & 0xff) { case 0: /* Language table */ - len = sizeof(uss820dci_langtab); - ptr = (const void *)&uss820dci_langtab; + len = sizeof(usb_string_lang_en); + ptr = (const void *)&usb_string_lang_en; goto tr_valid; case 1: /* Vendor */ |