Commit b1d8dfb0e548543b1645362e80e1fff522645299
Committed by
Greg Kroah-Hartman
1 parent
3b52f128ae
Exists in
master
and in
7 other branches
wusb: add link wusb-usb device
We need to tie the WUSB and USB devices; the USB stack doesn't need to know the details about the WUSB device, but needs to have a link to it. This is needed so that the notify call back for Remove Device can tie both and undo the device setup (sysfs files). We connect the devices together at the Add Device notifier callback (the wusb_dev references the usb_dev and stores it, the usb_dev references the wusb_dev and stores it); then we do create the WUSB sysfs files at the usb_dev sysfs directory. At Remove Device, we undo that (thus we need the usb_dev reference). Cross reference to functions in the WUSB substack: wusb_dev_{add,rm}_ncb(). Signed-off-by: Inaky Perez-Gonzalez <inaky@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff
include/linux/usb.h
... | ... | @@ -23,6 +23,7 @@ |
23 | 23 | |
24 | 24 | struct usb_device; |
25 | 25 | struct usb_driver; |
26 | +struct wusb_dev; | |
26 | 27 | |
27 | 28 | /*-------------------------------------------------------------------------*/ |
28 | 29 | |
... | ... | @@ -480,6 +481,7 @@ |
480 | 481 | unsigned autoresume_disabled:1; |
481 | 482 | unsigned skip_sys_resume:1; |
482 | 483 | #endif |
484 | + struct wusb_dev *wusb_dev; | |
483 | 485 | }; |
484 | 486 | #define to_usb_device(d) container_of(d, struct usb_device, dev) |
485 | 487 |