diff options
Diffstat (limited to 'drivers/usb/core/sysfs.c')
-rw-r--r-- | drivers/usb/core/sysfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/core/sysfs.c b/drivers/usb/core/sysfs.c index 566d9f94f735..9a56e3adf476 100644 --- a/drivers/usb/core/sysfs.c +++ b/drivers/usb/core/sysfs.c | |||
@@ -73,7 +73,7 @@ set_bConfigurationValue(struct device *dev, struct device_attribute *attr, | |||
73 | return (value < 0) ? value : count; | 73 | return (value < 0) ? value : count; |
74 | } | 74 | } |
75 | 75 | ||
76 | static DEVICE_ATTR(bConfigurationValue, S_IRUGO | S_IWUSR, | 76 | static DEVICE_ATTR_IGNORE_LOCKDEP(bConfigurationValue, S_IRUGO | S_IWUSR, |
77 | show_bConfigurationValue, set_bConfigurationValue); | 77 | show_bConfigurationValue, set_bConfigurationValue); |
78 | 78 | ||
79 | /* String fields */ | 79 | /* String fields */ |
@@ -595,7 +595,7 @@ static ssize_t usb_dev_authorized_store(struct device *dev, | |||
595 | return result < 0? result : size; | 595 | return result < 0? result : size; |
596 | } | 596 | } |
597 | 597 | ||
598 | static DEVICE_ATTR(authorized, 0644, | 598 | static DEVICE_ATTR_IGNORE_LOCKDEP(authorized, 0644, |
599 | usb_dev_authorized_show, usb_dev_authorized_store); | 599 | usb_dev_authorized_show, usb_dev_authorized_store); |
600 | 600 | ||
601 | /* "Safely remove a device" */ | 601 | /* "Safely remove a device" */ |
@@ -618,7 +618,7 @@ static ssize_t usb_remove_store(struct device *dev, | |||
618 | usb_unlock_device(udev); | 618 | usb_unlock_device(udev); |
619 | return rc; | 619 | return rc; |
620 | } | 620 | } |
621 | static DEVICE_ATTR(remove, 0200, NULL, usb_remove_store); | 621 | static DEVICE_ATTR_IGNORE_LOCKDEP(remove, 0200, NULL, usb_remove_store); |
622 | 622 | ||
623 | 623 | ||
624 | static struct attribute *dev_attrs[] = { | 624 | static struct attribute *dev_attrs[] = { |