diff options
Diffstat (limited to 'drivers/usb/host/ehci-dbg.c')
-rw-r--r-- | drivers/usb/host/ehci-dbg.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/usb/host/ehci-dbg.c b/drivers/usb/host/ehci-dbg.c index 9cd6270d06bc..34b7a31cd85b 100644 --- a/drivers/usb/host/ehci-dbg.c +++ b/drivers/usb/host/ehci-dbg.c | |||
@@ -785,10 +785,11 @@ static CLASS_DEVICE_ATTR (registers, S_IRUGO, show_registers, NULL); | |||
785 | static inline void create_debug_files (struct ehci_hcd *ehci) | 785 | static inline void create_debug_files (struct ehci_hcd *ehci) |
786 | { | 786 | { |
787 | struct class_device *cldev = ehci_to_hcd(ehci)->self.class_dev; | 787 | struct class_device *cldev = ehci_to_hcd(ehci)->self.class_dev; |
788 | int retval; | ||
788 | 789 | ||
789 | class_device_create_file(cldev, &class_device_attr_async); | 790 | retval = class_device_create_file(cldev, &class_device_attr_async); |
790 | class_device_create_file(cldev, &class_device_attr_periodic); | 791 | retval = class_device_create_file(cldev, &class_device_attr_periodic); |
791 | class_device_create_file(cldev, &class_device_attr_registers); | 792 | retval = class_device_create_file(cldev, &class_device_attr_registers); |
792 | } | 793 | } |
793 | 794 | ||
794 | static inline void remove_debug_files (struct ehci_hcd *ehci) | 795 | static inline void remove_debug_files (struct ehci_hcd *ehci) |