diff options
author | Michal Nazarewicz <mina86@mina86.com> | 2011-08-30 11:11:19 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-09-18 04:29:04 -0400 |
commit | e538dfdae85244fd2c4231725d82cc1f1bc4942c (patch) | |
tree | f8471dd9af305b95557d29a30f427c85418b1621 /drivers/usb/gadget/gmidi.c | |
parent | c58a76cdd7ab5a945a44fd2d64f6faf40323f95b (diff) |
usb: Provide usb_speed_string() function
In a few places in the kernel, the code prints
a human-readable USB device speed (eg. "high speed").
This involves a switch statement sometimes wrapped
around in ({ ... }) block leading to code repetition.
To mitigate this issue, this commit introduces
usb_speed_string() function, which returns
a human-readable name of provided speed.
It also changes a few places switch was used to use
this new function. This changes a bit the way the
speed is printed in few instances at the same time
standardising it.
Signed-off-by: Michal Nazarewicz <mina86@mina86.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/gadget/gmidi.c')
-rw-r--r-- | drivers/usb/gadget/gmidi.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/drivers/usb/gadget/gmidi.c b/drivers/usb/gadget/gmidi.c index 8b9220e128a7..893b967b0aff 100644 --- a/drivers/usb/gadget/gmidi.c +++ b/drivers/usb/gadget/gmidi.c | |||
@@ -640,17 +640,8 @@ gmidi_set_config(struct gmidi_device *dev, unsigned number, gfp_t gfp_flags) | |||
640 | if (result) { | 640 | if (result) { |
641 | gmidi_reset_config(dev); | 641 | gmidi_reset_config(dev); |
642 | } else { | 642 | } else { |
643 | char *speed; | ||
644 | |||
645 | switch (gadget->speed) { | ||
646 | case USB_SPEED_LOW: speed = "low"; break; | ||
647 | case USB_SPEED_FULL: speed = "full"; break; | ||
648 | case USB_SPEED_HIGH: speed = "high"; break; | ||
649 | default: speed = "?"; break; | ||
650 | } | ||
651 | |||
652 | dev->config = number; | 643 | dev->config = number; |
653 | INFO(dev, "%s speed\n", speed); | 644 | INFO(dev, "%s speed\n", usb_speed_string(gadget->speed)); |
654 | } | 645 | } |
655 | return result; | 646 | return result; |
656 | } | 647 | } |