From: Siva Durga Prasad Paladugu Date: Thu, 12 May 2016 06:57:13 +0000 (+0200) Subject: usb: dwc3: Correct datatype of base to unsigned long X-Git-Tag: v2016.07-rc1~20^2~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4835c737ff8ca65aa2bf206dcddd6407f4bc40cf;p=u-boot usb: dwc3: Correct datatype of base to unsigned long 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 Signed-off-by: Michal Simek --- diff --git a/include/dwc3-uboot.h b/include/dwc3-uboot.h index 09ff8a74d6..7af2ad11e4 100644 --- a/include/dwc3-uboot.h +++ b/include/dwc3-uboot.h @@ -13,7 +13,7 @@ #include struct dwc3_device { - int base; + unsigned long base; enum usb_dr_mode dr_mode; u32 maximum_speed; unsigned tx_fifo_resize:1;