All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PATCH] USB fixes for .39
@ 2011-04-15 23:59 Greg KH
  0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2011-04-15 23:59 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton; +Cc: linux-kernel, linux-usb

Here's a number of fixes for USB stuff for your .39 tree.

There are a lot of little things, new device ids and minor fixes.  The
larger stuff is USB 3.0 fixes that resolve a large number of reported
issues. The pci quirks change also resolves a problem reported by a
number of people.

Please pull from:
	master.kernel.org:/pub/scm/linux/kernel/git/gregkh/usb-2.6.git/ usb-linus

All of these have been in the linux-next tree for a while.

The full patches will be sent to the linux-usb mailing list, if anyone
wants to see them.

thanks,

greg k-h

------------

 arch/microblaze/Kconfig           |    1 -
 drivers/usb/Kconfig               |    1 +
 drivers/usb/core/devices.c        |   10 +-
 drivers/usb/core/hcd.c            |    2 +-
 drivers/usb/core/hub.c            |   12 ++-
 drivers/usb/gadget/f_audio.c      |    1 +
 drivers/usb/gadget/f_eem.c        |    8 +-
 drivers/usb/gadget/fsl_qe_udc.c   |   20 +++-
 drivers/usb/gadget/inode.c        |    4 +-
 drivers/usb/gadget/pch_udc.c      |    8 +-
 drivers/usb/gadget/r8a66597-udc.c |    2 +
 drivers/usb/host/ehci-q.c         |   15 ++-
 drivers/usb/host/isp1760-hcd.c    |    2 +-
 drivers/usb/host/ohci-au1xxx.c    |    2 +-
 drivers/usb/host/pci-quirks.c     |  117 +++++++++++++-------
 drivers/usb/host/xhci-mem.c       |  106 ++++++++++++------
 drivers/usb/host/xhci-pci.c       |    4 +
 drivers/usb/host/xhci-ring.c      |  219 ++++++++++++++++++++++--------------
 drivers/usb/host/xhci.c           |   23 +++-
 drivers/usb/host/xhci.h           |   11 ++-
 drivers/usb/musb/Kconfig          |    6 +-
 drivers/usb/musb/blackfin.c       |   24 ++++
 drivers/usb/musb/cppi_dma.c       |   27 +++--
 drivers/usb/musb/musb_core.c      |    2 +
 drivers/usb/musb/musb_core.h      |    5 +
 drivers/usb/musb/musb_gadget.c    |    4 +-
 drivers/usb/musb/musbhsdma.c      |    8 ++
 drivers/usb/musb/omap2430.c       |    3 +-
 drivers/usb/musb/ux500.c          |    2 +
 drivers/usb/serial/ftdi_sio.c     |    5 +
 drivers/usb/serial/ftdi_sio_ids.h |   12 ++
 drivers/usb/serial/option.c       |    5 +
 drivers/usb/serial/qcserial.c     |   31 ++++-
 33 files changed, 483 insertions(+), 219 deletions(-)

---------------

Alan Stern (1):
      USB: EHCI: unlink unused QHs when the controller is stopped

Alexey Khoroshilov (1):
      USB: usb-gadget: unlock data->lock mutex on error path in ep_read()

Andiry Xu (2):
      usbcore: Bug fix: system can't suspend with USB3.0 device connected to USB3.0 hub
      xHCI: Implement AMD PLL quirk

Christian Simon (1):
      USB: ftdi_sio: Added IDs for CTI USB Serial Devices

Dan Carpenter (6):
      USB: musb: add missing unlock in cppi_interrupt()
      USB: musb: using 0 instead of NULL
      USB: musb: silence printk format warning
      USB: musb: dereferencing an iomem pointer
      usb: pch_udc: unlock on allocation failure
      USB: xhci: unsigned char never equals -1

Dmitry Torokhov (6):
      USB: fix formatting of SuperSpeed endpoints in /proc/bus/usb/devices
      USB: xhci - fix unsafe macro definitions
      USB: xhci - remove excessive 'inline' markings
      USB: xhci: simplify logic of skipping missed isoc TDs
      USB: xhci - fix math in xhci_get_endpoint_interval()
      USB: xhci - also free streams when resetting devices

Felipe Balbi (2):
      usb: musb: temporarily make it bool
      usb: musb: gadget: check the correct list_head

Greg Kroah-Hartman (1):
      Revert "USB: isp1760-hcd: move imask clear after pending work is done"

Hema HK (1):
      usb: musb: Fix the crash issue during reboot

Joerg Roedel (1):
      USB host: Fix lockdep warning in AMD PLL quirk

Johan Hovold (2):
      usb: musb: omap2430: fix build failure
      USB: ftdi_sio: add PID for OCT DK201 docking station

Marius B. Kotsbak (1):
      USB: option: Added support for Samsung GT-B3730/GT-B3710 LTE USB modem.

Matthew Wilcox (1):
      USB: Fix unplug of device with active streams

Mian Yousaf Kaukab (2):
      usb: musb: clear AUTOSET while clearing DMAENAB
      usb: musb: ux500: copy dma mask from platform device to musb device

Michal Simek (1):
      usb: Fix Kconfig unmet dependencies for Microblaze EHCI

Mike Frysinger (1):
      USB: musb: blackfin: work around anomaly 05000450

Paul Friedrich (1):
      USB: ftdi_sio: add ids for Hameg HO720 and HO730

Randy Dunlap (1):
      usb: fix ips1760-hcd printk format warning

Richard Retanubun (1):
      USB: isp1760-hcd: move imask clear after pending work is done

Sarah Sharp (2):
      xhci: Fix NULL pointer deref in handle_port_status()
      xhci: Tell USB core both roothubs lost power.

Sebastian Andrzej Siewior (1):
      usb/gadget: don't leak hs_descriptors

Steven Hardy (3):
      usb: Fix qcserial memory leak on rmmod
      usb: qcserial avoid pointing to freed memory
      usb: qcserial add missing errorpath kfrees

Valentin Longchamp (1):
      USB: fsl_qe_udc: send ZLP when zero flag and length % maxpacket == 0

Yauheni Kaliuta (1):
      usb: gadget: eem: fix echo command processing

Yoichi Yuasa (1):
      USB: ohci-au1xxx: fix warning "__BIG_ENDIAN" is not defined

Yoshihiro Shimoda (1):
      usb: r8a66597-udc: fix spinlock usage


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [GIT PATCH] USB fixes for .39
@ 2011-05-04 21:05 Greg KH
  0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2011-05-04 21:05 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton; +Cc: linux-kernel, linux-usb

Here's some more small fixes for your .39 tree.

Nothing major, just some small fixes for things that have been reported.

The omap regulator patch was unfortunately named, but it does fix a
problem that has been seen with that hardware that is needed to get it
to work properly.

Please pull from:
	master.kernel.org:/pub/scm/linux/kernel/git/gregkh/usb-2.6.git/ usb-linus

All of these have been in the linux-next tree for a while.

The full patches will be sent to the linux-usb mailing list, if anyone
wants to see them.

thanks,

greg k-h

------------

 drivers/mfd/omap-usb-host.c      |    9 +++------
 drivers/staging/usbip/vhci_hcd.c |    2 +-
 drivers/usb/host/ehci-omap.c     |   20 ++++++++++++++++++++
 drivers/usb/host/isp1760-hcd.c   |    1 +
 drivers/usb/host/xhci-hub.c      |   19 +++++++++++++++++--
 drivers/usb/musb/musb_gadget.c   |    6 ++----
 drivers/usb/musb/omap2430.c      |    2 +-
 7 files changed, 45 insertions(+), 14 deletions(-)

---------------

Alan Stern (1):
      USB: fix regression in usbip by setting has_tt flag

Andiry Xu (1):
      xHCI: Clear PLC in xhci_bus_resume()

Arvid Brodin (1):
      usb/isp1760: Report correct urb status after unlink

Axel Lin (1):
      mfd: Fix usbhs_enable error handling

Jarkko Nikula (2):
      usb: musb: omap2430: Fix retention idle on musb peripheral only boards
      usb: musb: gadget: Fix out-of-sync runtime pm calls

Keshava Munegowda (1):
      omap:usb: add regulator support for EHCI


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [GIT PATCH] USB fixes for .39
@ 2011-03-24 16:30 Greg KH
  0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2011-03-24 16:30 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton; +Cc: linux-kernel, linux-usb

Here's some small fixes for the USB tree for things that people have
reported during the .39-rc1 merge window.

Please pull from:
	master.kernel.org:/pub/scm/linux/kernel/git/gregkh/usb-2.6.git/ usb-linus

The full patches will be sent to the linux-usb mailing list, if anyone
wants to see them.

thanks,

greg k-h

------------

 drivers/usb/class/cdc-acm.c    |    7 ++++++-
 drivers/usb/class/cdc-wdm.c    |    2 +-
 drivers/usb/core/devio.c       |    2 +-
 drivers/usb/host/ehci-q.c      |   12 ------------
 drivers/usb/misc/uss720.c      |    7 +++----
 drivers/usb/musb/blackfin.c    |    6 +++---
 drivers/usb/musb/musb_gadget.c |    8 ++++----
 drivers/usb/serial/usb_wwan.c  |    3 +--
 8 files changed, 19 insertions(+), 28 deletions(-)

---------------

Alan Stern (1):
      ehci-hcd: Bug fix: don't set a QH's Halt bit

Bob Liu (1):
      usb: musb: blackfin: fix typo in new dev_pm_ops struct

Hema HK (1):
      usb: musb: Fix for merge issue

Johan Hovold (3):
      USB: cdc-acm: fix memory corruption / panic
      USB: cdc-acm: fix potential null-pointer dereference
      USB: cdc-acm: fix potential null-pointer dereference on disconnect

Michal Sojka (1):
      USB: Do not pass negative length to snoop_urb()

Mike Frysinger (2):
      usb: musb: blackfin: fix typo in platform driver name
      usb: musb: blackfin: fix typo in new bfin_musb_vbus_status func

Oliver Neukum (1):
      usb: wwan: fix compilation without CONFIG_PM_RUNTIME

Peter Holik (1):
      USB: uss720 fixup refcount position

Robert Lukassen (1):
      USB: Fix 'bad dma' problem on WDM device disconnect


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-05-04 21:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-15 23:59 [GIT PATCH] USB fixes for .39 Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2011-05-04 21:05 Greg KH
2011-03-24 16:30 Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.