usb: ehci: do not invalidate a NULL buffer
authorDirk Behme <dirk.behme@gmail.com>
Fri, 17 Nov 2017 14:28:36 +0000 (15:28 +0100)
committerMarek Vasut <marek.vasut+renesas@gmail.com>
Sun, 26 Nov 2017 01:22:36 +0000 (02:22 +0100)
commitb3cbcd902db7019410dfe3729a660abcb1f03ffb
treef0524753a1a56089008956ead3ab38c2cbdbbb25
parent45157d27644c23493ea1b5a6c9dd67572eb75c8c
usb: ehci: do not invalidate a NULL buffer

Its a valid use case to call ehci_submit_async() with a NULL buffer
with length 0. E.g. from usb_set_configuration().

As invalidate_dcache_range() isn't able to judge if the address
NULL is valid or not (depending on the SoC hardware configuration it
might be valid) do the check in ehci_submit_async() as here we know
that we don't have to invalidate such a buffer.

Signed-off-by: Dirk Behme <dirk.behme@de.bosch.com>
drivers/usb/host/ehci-hcd.c