Jelajahi Sumber

usb: Use (foo *) instead of (foo*).

Use (foo *) instead of (foo*).

Signed-off-by: Sandhya Bankar <bankarsandhya512@gmail.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Sandhya Bankar 9 tahun lalu
induk
melakukan
4320280001
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      drivers/usb/gadget/config.c

+ 1 - 1
drivers/usb/gadget/config.c

@@ -93,7 +93,7 @@ int usb_gadget_config_buf(
 	*cp = *config;
 	*cp = *config;
 
 
 	/* then interface/endpoint/class/vendor/... */
 	/* then interface/endpoint/class/vendor/... */
-	len = usb_descriptor_fillbuf(USB_DT_CONFIG_SIZE + (u8*)buf,
+	len = usb_descriptor_fillbuf(USB_DT_CONFIG_SIZE + (u8 *)buf,
 			length - USB_DT_CONFIG_SIZE, desc);
 			length - USB_DT_CONFIG_SIZE, desc);
 	if (len < 0)
 	if (len < 0)
 		return len;
 		return len;