diff options
author | Matthew Wilcox <willy@linux.intel.com> | 2009-09-24 18:18:27 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-12-11 14:55:13 -0500 |
commit | b1f0a34ca983a6defb0431aa18c9268eb9ffcc4a (patch) | |
tree | 733bc91991114d9425730fe9ac7f2ecefd4b287b /drivers | |
parent | 872d3599622702b59a00521c0a5b8ff3822e1803 (diff) |
USB: Convert a dev_info to a dev_dbg
Knowing which configuration was chosen is a debugging aid more than it
is informational.
Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/core/generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/core/generic.c b/drivers/usb/core/generic.c index 05e6d313961e..bdf87a8414a1 100644 --- a/drivers/usb/core/generic.c +++ b/drivers/usb/core/generic.c | |||
@@ -139,7 +139,7 @@ int usb_choose_configuration(struct usb_device *udev) | |||
139 | 139 | ||
140 | if (best) { | 140 | if (best) { |
141 | i = best->desc.bConfigurationValue; | 141 | i = best->desc.bConfigurationValue; |
142 | dev_info(&udev->dev, | 142 | dev_dbg(&udev->dev, |
143 | "configuration #%d chosen from %d choice%s\n", | 143 | "configuration #%d chosen from %d choice%s\n", |
144 | i, num_configs, plural(num_configs)); | 144 | i, num_configs, plural(num_configs)); |
145 | } else { | 145 | } else { |