From 788df5b30d59124f4b6674971d6470f16edc78f4 Mon Sep 17 00:00:00 2001 From: "jino.cho" Date: Mon, 18 Apr 2016 10:50:55 +0900 Subject: [PATCH] artik10: usb: dwc3: change base address of the USB Global Register This patch changes base address of the USB Global Register. Because ARTIK10 uses USB channel 0. - USB Ch0 Base Address: 0x1200_0000 - USB Ch1 Base Address: 0x1240_0000 Change-Id: I41f96247248f16c76894a10daa4b11cbac69d5df Signed-off-by: jino.cho --- board/samsung/smdk5422/smdk5422.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/samsung/smdk5422/smdk5422.c b/board/samsung/smdk5422/smdk5422.c index 320976807..add61d72c 100644 --- a/board/samsung/smdk5422/smdk5422.c +++ b/board/samsung/smdk5422/smdk5422.c @@ -496,7 +496,7 @@ unsigned int get_board_rev(void) #ifdef CONFIG_USB_DWC3 static struct dwc3_device dwc3_device_data = { .maximum_speed = USB_SPEED_SUPER, - .base = 0x12400000, + .base = 0x12000000, .dr_mode = USB_DR_MODE_PERIPHERAL, .index = 0, }; -- 2.34.1