]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
USB: EHCI: adjust error return code
authorAlan Stern <stern@rowland.harvard.edu>
Thu, 4 Dec 2014 15:22:57 +0000 (10:22 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 9 Jan 2015 17:58:49 +0000 (09:58 -0800)
commitc401e7b4a808d50ab53ef45cb8d0b99b238bf2c9
tree072dab0679ba3614ca32d0476d3e0b466cb07b71
parent6d89252a998a695ecb0348fc2d717dc33d90cae9
USB: EHCI: adjust error return code

The USB stack uses error code -ENOSPC to indicate that the periodic
schedule is too full, with insufficient bandwidth to accommodate a new
allocation.  It uses -EFBIG to indicate that an isochronous transfer
could not be linked into the schedule because it would exceed the
number of isochronous packets the host controller driver can handle
(generally because the new transfer would extend too far into the
future).

ehci-hcd uses the wrong error code at one point.  This patch fixes it,
along with a misleading comment and debugging message.

Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/ehci-sched.c