]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
usb: common: introduce usb_state_string()
authorFelipe Balbi <balbi@ti.com>
Thu, 24 Jan 2013 20:29:48 +0000 (22:29 +0200)
committerFelipe Balbi <balbi@ti.com>
Mon, 18 Mar 2013 09:17:11 +0000 (11:17 +0200)
this function will receive enum usb_device_state
and return a human-readable string from it or,
case an unknown value is passed as argument,
the string "UNKNOWN".

Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/usb-common.c
include/linux/usb/ch9.h

index d29503e954abf829c71e69f08ec995da39291481..070b681e5d17afbba8c8c7f8e9065ebb8227407c 100644 (file)
@@ -32,4 +32,25 @@ const char *usb_speed_string(enum usb_device_speed speed)
 }
 EXPORT_SYMBOL_GPL(usb_speed_string);
 
+const char *usb_state_string(enum usb_device_state state)
+{
+       static const char *const names[] = {
+               [USB_STATE_NOTATTACHED] = "not attached",
+               [USB_STATE_ATTACHED] = "attached",
+               [USB_STATE_POWERED] = "powered",
+               [USB_STATE_RECONNECTING] = "reconnecting",
+               [USB_STATE_UNAUTHENTICATED] = "unauthenticated",
+               [USB_STATE_DEFAULT] = "default",
+               [USB_STATE_ADDRESS] = "addresssed",
+               [USB_STATE_CONFIGURED] = "configured",
+               [USB_STATE_SUSPENDED] = "suspended",
+       };
+
+       if (state < 0 || state >= ARRAY_SIZE(names))
+               return "UNKNOWN";
+
+       return names[state];
+}
+EXPORT_SYMBOL_GPL(usb_state_string);
+
 MODULE_LICENSE("GPL");
index 9c210f2283dfd0268e1e7e580b1b6b3091801429..27603bcbb9b99dccd86f9ac7f720e13fde4c8bd0 100644 (file)
  */
 extern const char *usb_speed_string(enum usb_device_speed speed);
 
+
+/**
+ * usb_state_string - Returns human readable name for the state.
+ * @state: The state to return a human-readable name for. If it's not
+ *     any of the states devices in usb_device_state_string enum,
+ *     the string UNKNOWN will be returned.
+ */
+extern const char *usb_state_string(enum usb_device_state state);
+
 #endif /* __LINUX_USB_CH9_H */