usb: dwc3: Rename .select_dr_mode to .glue_configure

Rename the select_dr_mode callback to glue_configure, the callback is
used for more than enforcing controller mode even on the TI chips, so
change the name to a more generic one. No functional change.

Tested-By: Tim Harvey <tharvey@gateworks.com> #imx8mp-venice-gw74xx
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Angus Ainslie <angus@akkea.ca>
Cc: Bin Meng <bmeng.cn@gmail.com>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Cc: Michal Simek <michal.simek@xilinx.com>
Cc: Peng Fan <peng.fan@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
This commit is contained in:
Marek Vasut 2022-04-13 00:42:55 +02:00 committed by Stefano Babic
parent 898e7610c6
commit f1ef95591c

View File

@ -219,11 +219,11 @@ U_BOOT_DRIVER(dwc3_generic_host) = {
#endif #endif
struct dwc3_glue_ops { struct dwc3_glue_ops {
void (*select_dr_mode)(struct udevice *dev, int index, void (*glue_configure)(struct udevice *dev, int index,
enum usb_dr_mode mode); enum usb_dr_mode mode);
}; };
void dwc3_ti_select_dr_mode(struct udevice *dev, int index, void dwc3_ti_glue_configure(struct udevice *dev, int index,
enum usb_dr_mode mode) enum usb_dr_mode mode)
{ {
#define USBOTGSS_UTMI_OTG_STATUS 0x0084 #define USBOTGSS_UTMI_OTG_STATUS 0x0084
@ -304,7 +304,7 @@ enum dwc3_omap_utmi_mode {
} }
struct dwc3_glue_ops ti_ops = { struct dwc3_glue_ops ti_ops = {
.select_dr_mode = dwc3_ti_select_dr_mode, .glue_configure = dwc3_ti_glue_configure,
}; };
static int dwc3_glue_bind(struct udevice *parent) static int dwc3_glue_bind(struct udevice *parent)
@ -435,8 +435,8 @@ static int dwc3_glue_probe(struct udevice *dev)
dr_mode = usb_get_dr_mode(dev_ofnode(child)); dr_mode = usb_get_dr_mode(dev_ofnode(child));
device_find_next_child(&child); device_find_next_child(&child);
if (ops && ops->select_dr_mode) if (ops && ops->glue_configure)
ops->select_dr_mode(dev, index, dr_mode); ops->glue_configure(dev, index, dr_mode);
index++; index++;
} }