浏览代码

usb: gadget: goku_udc: add registered flag bit, fixing build

The commit below cleaned up error handling, in part by introducing a
registered flag bit.  This however was not added to the device
structure leding to build failures:

  commit 319feaabb6c7ccd90da6e3207563c265da7d21ae
  Author: Dan Carpenter <error27@gmail.com>
  Date:   Tue Oct 5 18:55:34 2010 +0200

    usb: gadget: goku_udc: Fix error path

Add the missing registered flag bit.

Signed-off-by: Andy Whitcroft <apw@canonical.com>
Acked-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Andy Whitcroft 14 年之前
父节点
当前提交
4b4cd731b0
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      drivers/usb/gadget/goku_udc.h

+ 2 - 1
drivers/usb/gadget/goku_udc.h

@@ -251,7 +251,8 @@ struct goku_udc {
 					got_region:1,
 					got_region:1,
 					req_config:1,
 					req_config:1,
 					configured:1,
 					configured:1,
-					enabled:1;
+					enabled:1,
+					registered:1;
 
 
 	/* pci state used to access those endpoints */
 	/* pci state used to access those endpoints */
 	struct pci_dev			*pdev;
 	struct pci_dev			*pdev;