diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-18 16:57:00 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-18 16:57:00 -0700 | 
| commit | 7e55f81ecf592d269b9430d9c06db509fc3f19f9 (patch) | |
| tree | 127ec2f59dad0bed386bf7f84759eddcbad2dd7c /drivers/usb/usb-common.c | |
| parent | ea2388f2813ec7871c40a8b18afb80b5674d6e1d (diff) | |
| parent | 94d72f008909610710bb1841d665eeeb010a0be1 (diff) | |
Merge tag 'usb-3.15-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
Pull USB fixes from Greg KH:
 "Here are a number of tiny USB fixes and new device ids for 3.15-rc2.
  Nothing major, just issues some people have reported.
  All of these have been in linux-next"
* tag 'usb-3.15-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb:
  uas: fix deadlocky memory allocations
  uas: fix error handling during scsi_scan()
  uas: fix GFP_NOIO under spinlock
  uwb: adds missing error handling
  USB: cdc-acm: Remove Motorola/Telit H24 serial interfaces from ACM driver
  USB: ohci-jz4740: FEAT_POWER is a port feature, not a hub feature
  USB: ohci-jz4740: Fix uninitialized variable warning
  USB: EHCI: tegra: set txfill_tuning
  usb: ehci-platform: Return immediately from suspend if ehci_suspend fails
  usb: ehci-exynos: Return immediately from suspend if ehci_suspend fails
  USB: fix crash during hotplug of PCI USB controller card
  USB: cdc-acm: fix double usb_autopm_put_interface() in acm_port_activate()
  usb: usb-common: fix typo for usb_state_string
  USB: usb_wwan: fix handling of missing bulk endpoints
  USB: pl2303: add ids for Hewlett-Packard HP POS pole displays
  USB: cp210x: Add 8281 (Nanotec Plug & Drive)
  usb: option driver, add support for Telit UE910v2
  Revert "USB: serial: add usbid for dell wwan card to sierra.c"
  USB: serial: ftdi_sio: add id for Brainboxes serial cards
Diffstat (limited to 'drivers/usb/usb-common.c')
| -rw-r--r-- | drivers/usb/usb-common.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/usb-common.c b/drivers/usb/usb-common.c index d771870a819e..6dfd30a863c7 100644 --- a/drivers/usb/usb-common.c +++ b/drivers/usb/usb-common.c @@ -69,7 +69,7 @@ const char *usb_state_string(enum usb_device_state state)  		[USB_STATE_RECONNECTING] = "reconnecting",  		[USB_STATE_UNAUTHENTICATED] = "unauthenticated",  		[USB_STATE_DEFAULT] = "default", -		[USB_STATE_ADDRESS] = "addresssed", +		[USB_STATE_ADDRESS] = "addressed",  		[USB_STATE_CONFIGURED] = "configured",  		[USB_STATE_SUSPENDED] = "suspended",  	};  | 
