Re: [PATCH] usb : gadget : usbstring : fix style problems

From: Sergei Shtylyov
Date: Wed Nov 16 2011 - 07:09:32 EST


Hello.

On 16-11-2011 8:43, Tonylijo wrote:

Minor fixes for problems found by checkpatch.pl in usbstring.c.

Signed-off-by: Tonylijo Jose<mail@xxxxxxxxxxx>
---
diff --git a/drivers/usb/gadget/usbstring.c
b/drivers/usb/gadget/usbstring.c
index 58c4d37..2bdc56a 100644
--- a/drivers/usb/gadget/usbstring.c
+++ b/drivers/usb/gadget/usbstring.c
[...]
@@ -102,17 +104,17 @@ fail:
* characters (which are also widely used in C strings).
*/
int
-usb_gadget_get_string (struct usb_gadget_strings *table, int id, u8
*buf)
+usb_gadget_get_string(struct usb_gadget_strings *table, int id, u8
*buf)

The patch was line-wrapped by your mailer. Seems easy to fix though...

@@ -124,13 +126,13 @@ usb_gadget_get_string (struct usb_gadget_strings
*table, int id, u8 *buf)
return -EINVAL;

/* string descriptors have length, tag, then UTF16-LE text */
- len = min ((size_t) 126, strlen (s->s));
- memset (buf + 2, 0, 2 * len); /* zero all the bytes */
+ len = min((size_t) 126, strlen(s->s));

Worth converting to min_t() probably...

WBR, Sergei
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/