]> git.sur5r.net Git - u-boot/commitdiff
usb: dwc3: Correct datatype of base to unsigned long
authorSiva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
Thu, 12 May 2016 06:57:13 +0000 (08:57 +0200)
committerMarek Vasut <marex@denx.de>
Fri, 3 Jun 2016 22:43:51 +0000 (00:43 +0200)
Correct type of varibale base to unsigned long as
keeping it as int causes usb failures if MSB of
the base address is set.

Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
include/dwc3-uboot.h

index 09ff8a74d669aae53e007c15f988af8922feb7d2..7af2ad11e4ed30f0453c299be594c6688d111b42 100644 (file)
@@ -13,7 +13,7 @@
 #include <linux/usb/otg.h>
 
 struct dwc3_device {
-       int base;
+       unsigned long base;
        enum usb_dr_mode dr_mode;
        u32 maximum_speed;
        unsigned tx_fifo_resize:1;