mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 18:13:04 +00:00
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 319feaabb6
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>
This commit is contained in:
parent
724c85251f
commit
4b4cd731b0
@ -251,7 +251,8 @@ struct goku_udc {
|
||||
got_region:1,
|
||||
req_config:1,
|
||||
configured:1,
|
||||
enabled:1;
|
||||
enabled:1,
|
||||
registered:1;
|
||||
|
||||
/* pci state used to access those endpoints */
|
||||
struct pci_dev *pdev;
|
||||
|
Loading…
Reference in New Issue
Block a user