Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/03c128c949f405d6218f46adc7ef94a998770efa You should set ROOT_URL correctly, otherwise the web may not work correctly.

board: ti: remove duplicate initialization of vbus_id_status

vbus_id_status is initialized in board_usb_init. So remove it
while creating dwc3_device objects.

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
master
Kishon Vijay Abraham I 10 years ago committed by Tom Rini
parent 0a7ab045b9
commit 03c128c949
  1. 2
      board/ti/am43xx/board.c
  2. 2
      board/ti/dra7xx/evm.c

@ -685,7 +685,6 @@ static struct dwc3_device usb_otg_ss1 = {
static struct dwc3_omap_device usb_otg_ss1_glue = {
.base = (void *)USB_OTG_SS1_GLUE_BASE,
.utmi_mode = DWC3_OMAP_UTMI_MODE_SW,
.vbus_id_status = OMAP_DWC3_VBUS_VALID,
.index = 0,
};
@ -704,7 +703,6 @@ static struct dwc3_device usb_otg_ss2 = {
static struct dwc3_omap_device usb_otg_ss2_glue = {
.base = (void *)USB_OTG_SS2_GLUE_BASE,
.utmi_mode = DWC3_OMAP_UTMI_MODE_SW,
.vbus_id_status = OMAP_DWC3_VBUS_VALID,
.index = 1,
};

@ -133,7 +133,6 @@ static struct dwc3_device usb_otg_ss1 = {
static struct dwc3_omap_device usb_otg_ss1_glue = {
.base = (void *)DRA7_USB_OTG_SS1_GLUE_BASE,
.utmi_mode = DWC3_OMAP_UTMI_MODE_SW,
.vbus_id_status = OMAP_DWC3_VBUS_VALID,
.index = 0,
};
@ -154,7 +153,6 @@ static struct dwc3_device usb_otg_ss2 = {
static struct dwc3_omap_device usb_otg_ss2_glue = {
.base = (void *)DRA7_USB_OTG_SS2_GLUE_BASE,
.utmi_mode = DWC3_OMAP_UTMI_MODE_SW,
.vbus_id_status = OMAP_DWC3_VBUS_VALID,
.index = 1,
};

Loading…
Cancel
Save