diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-27 13:15:38 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-06-15 21:44:43 -0700 |
commit | ed14f0340a4954c1a9ffaff01c261428b5753e9d (patch) | |
tree | 021e45d61e33ac7475b6bc92a8cbef4ebdd74df4 /drivers/usb/host/ehci-hub.c | |
parent | 109833417cd0bf27089fcca5b0d6a44c8d592452 (diff) | |
download | linux-3.10-ed14f0340a4954c1a9ffaff01c261428b5753e9d.tar.gz linux-3.10-ed14f0340a4954c1a9ffaff01c261428b5753e9d.tar.bz2 linux-3.10-ed14f0340a4954c1a9ffaff01c261428b5753e9d.zip |
USB: EHCI: create sysfs companion files directly in the controller device
The controller device is where we want this sysfs file, especially as
the dev pointer is about to go away...
Cc: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/ehci-hub.c')
-rw-r--r-- | drivers/usb/host/ehci-hub.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/ehci-hub.c b/drivers/usb/host/ehci-hub.c index 97a53a48a3d..f46ad27c9a9 100644 --- a/drivers/usb/host/ehci-hub.c +++ b/drivers/usb/host/ehci-hub.c @@ -391,7 +391,7 @@ static inline void create_companion_file(struct ehci_hcd *ehci) /* with integrated TT there is no companion! */ if (!ehci_is_TDI(ehci)) - i = device_create_file(ehci_to_hcd(ehci)->self.dev, + i = device_create_file(ehci_to_hcd(ehci)->self.controller, &dev_attr_companion); } @@ -399,7 +399,7 @@ static inline void remove_companion_file(struct ehci_hcd *ehci) { /* with integrated TT there is no companion! */ if (!ehci_is_TDI(ehci)) - device_remove_file(ehci_to_hcd(ehci)->self.dev, + device_remove_file(ehci_to_hcd(ehci)->self.controller, &dev_attr_companion); } |