usb: dwc3: Change addr and length declaration to long at dwc3_flush_cache() function
In the dwc3 driver, calls of dwc3_flush_cache() pass addr and length as
longs. Unfortunately, this function converts long on 64 bit machines
to 32 bit int.
This causes "Synchronous Abort" exceptions on 64 bit machines.
To alleviate this problem we accept long arguments to dwc3_flush_cache()
and then explicitly covert them to unsigned types required by
flush_dcache_range().
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>