summaryrefslogtreecommitdiff
path: root/include/dwc3-uboot.h
diff options
context:
space:
mode:
authorSiva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>2016-05-12 06:57:13 (GMT)
committerMarek Vasut <marex@denx.de>2016-06-03 22:43:51 (GMT)
commit4835c737ff8ca65aa2bf206dcddd6407f4bc40cf (patch)
tree3bfe2aaa3314df66bba046b1450d21d82f2c7ed8 /include/dwc3-uboot.h
parentb2f1858455e99a91aeafe59ac73c6c047106d5e8 (diff)
downloadu-boot-fsl-qoriq-4835c737ff8ca65aa2bf206dcddd6407f4bc40cf.tar.xz
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 <sivadur@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'include/dwc3-uboot.h')
-rw-r--r--include/dwc3-uboot.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dwc3-uboot.h b/include/dwc3-uboot.h
index 09ff8a7..7af2ad1 100644
--- a/include/dwc3-uboot.h
+++ b/include/dwc3-uboot.h
@@ -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;