Files
linux/drivers/usb/host
Mathias Nyman 7e64b0373a xhci: simplify how we store TDs in urb private data
Instead of storing a zero length array of td pointers, and then
allocate memory both for the td pointer array and the td's, just
use a zero length array of actual td's in urb private data.

old:

struct urb_priv {
       struct xhci_td *td[0]
}

new:

struct urb_priv {
        struct xhci_td td[0]
}

Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-01-25 11:00:02 +01:00
..
2016-12-25 17:21:22 +01:00
2016-12-25 17:21:22 +01:00
2015-04-03 19:03:18 +02:00
2016-10-30 06:40:39 -04:00
2015-04-03 19:03:17 +02:00
2016-11-21 17:33:40 +01:00
2016-12-08 17:50:09 +01:00
2015-06-08 14:26:22 -07:00
2017-01-19 10:37:16 +01:00
2017-01-19 10:37:16 +01:00