Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
usbstring.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2003 David Brownell
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as published
6  * by the Free Software Foundation; either version 2.1 of the License, or
7  * (at your option) any later version.
8  */
9 
10 #include <linux/errno.h>
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/list.h>
14 #include <linux/string.h>
15 #include <linux/device.h>
16 #include <linux/init.h>
17 #include <linux/nls.h>
18 
19 #include <linux/usb/ch9.h>
20 #include <linux/usb/gadget.h>
21 
22 
40 int
42 {
43  struct usb_string *s;
44  int len;
45 
46  /* descriptor 0 has the language id */
47  if (id == 0) {
48  buf [0] = 4;
49  buf [1] = USB_DT_STRING;
50  buf [2] = (u8) table->language;
51  buf [3] = (u8) (table->language >> 8);
52  return 4;
53  }
54  for (s = table->strings; s && s->s; s++)
55  if (s->id == id)
56  break;
57 
58  /* unrecognized: stall. */
59  if (!s || !s->s)
60  return -EINVAL;
61 
62  /* string descriptors have length, tag, then UTF16-LE text */
63  len = min ((size_t) 126, strlen (s->s));
64  len = utf8s_to_utf16s(s->s, len, UTF16_LITTLE_ENDIAN,
65  (wchar_t *) &buf[2], 126);
66  if (len < 0)
67  return -EINVAL;
68  buf [0] = (len + 1) * 2;
69  buf [1] = USB_DT_STRING;
70  return buf [0];
71 }