浏览代码

USB: pxa27x_udc: use four bits to store endpoint addresses

Endpoint addresses on pxa27x can be programmed as 1-15, but since
only three bits were being used to store the endpoint number it
was possible to overflow.

Signed-off-by: Matt Reimer <mreimer@sdgsystems.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Matt Reimer 15 年之前
父节点
当前提交
0ff8d1b3c8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/usb/gadget/pxa27x_udc.h

+ 1 - 1
drivers/usb/gadget/pxa27x_udc.h

@@ -360,7 +360,7 @@ struct pxa_ep {
 	 * Specific pxa endpoint data, needed for hardware initialization
 	 * Specific pxa endpoint data, needed for hardware initialization
 	 */
 	 */
 	unsigned		dir_in:1;
 	unsigned		dir_in:1;
-	unsigned		addr:3;
+	unsigned		addr:4;
 	unsigned		config:2;
 	unsigned		config:2;
 	unsigned		interface:3;
 	unsigned		interface:3;
 	unsigned		alternate:3;
 	unsigned		alternate:3;