aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/usb-common.c
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2013-03-07 03:45:56 -0500
committerFelipe Balbi <balbi@ti.com>2013-03-18 05:18:03 -0400
commit7009bdd7f31ed6e769af0f76e2368bb6033be572 (patch)
tree77937b38a3e34edce74c966695849bf528575271 /drivers/usb/usb-common.c
parent42c0bf1ce7c067bbc3e77d5626f102a16bc4fb6b (diff)
usb: otg: move usb_otg_state_string to usb-common.c
otg.c only had a single function definition which might make more sense to be placed in usb-common.c. While doing that, we also delete otg.c since it's now empty. Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/usb-common.c')
-rw-r--r--drivers/usb/usb-common.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/drivers/usb/usb-common.c b/drivers/usb/usb-common.c
index 070b681e5d17..0db0a919d72b 100644
--- a/drivers/usb/usb-common.c
+++ b/drivers/usb/usb-common.c
@@ -14,6 +14,32 @@
14#include <linux/kernel.h> 14#include <linux/kernel.h>
15#include <linux/module.h> 15#include <linux/module.h>
16#include <linux/usb/ch9.h> 16#include <linux/usb/ch9.h>
17#include <linux/usb/otg.h>
18
19const char *usb_otg_state_string(enum usb_otg_state state)
20{
21 static const char *const names[] = {
22 [OTG_STATE_A_IDLE] = "a_idle",
23 [OTG_STATE_A_WAIT_VRISE] = "a_wait_vrise",
24 [OTG_STATE_A_WAIT_BCON] = "a_wait_bcon",
25 [OTG_STATE_A_HOST] = "a_host",
26 [OTG_STATE_A_SUSPEND] = "a_suspend",
27 [OTG_STATE_A_PERIPHERAL] = "a_peripheral",
28 [OTG_STATE_A_WAIT_VFALL] = "a_wait_vfall",
29 [OTG_STATE_A_VBUS_ERR] = "a_vbus_err",
30 [OTG_STATE_B_IDLE] = "b_idle",
31 [OTG_STATE_B_SRP_INIT] = "b_srp_init",
32 [OTG_STATE_B_PERIPHERAL] = "b_peripheral",
33 [OTG_STATE_B_WAIT_ACON] = "b_wait_acon",
34 [OTG_STATE_B_HOST] = "b_host",
35 };
36
37 if (state < 0 || state >= ARRAY_SIZE(names))
38 return "UNDEFINED";
39
40 return names[state];
41}
42EXPORT_SYMBOL_GPL(usb_otg_state_string);
17 43
18const char *usb_speed_string(enum usb_device_speed speed) 44const char *usb_speed_string(enum usb_device_speed speed)
19{ 45{