HomeSort by: relevance | last modified time | path
    Searched defs:dr_mode (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/dev/fdt/
dwc2_fdt.c 126 const char *dr_mode = fdtbus_get_string(phandle, "dr_mode"); local in function:dwc2_fdt_attach
127 if (dr_mode == NULL || strcmp(dr_mode, "host") != 0) {
128 aprint_error(": mode '%s' not supported\n", dr_mode);
cdns3_fdt.c 104 const char *dr_mode = fdtbus_get_string(phandle, "dr_mode"); local in function:cdns3_fdt_attach
105 if (dr_mode == NULL || strcmp(dr_mode, "otg") == 0) {
122 } else if (strcmp(dr_mode, "host") != 0) {
123 aprint_error(": '%s' not supported\n", dr_mode);
dwc3_fdt.c 264 const char *dr_mode = fdtbus_get_string(dwc3_phandle, "dr_mode"); local in function:dwc3_fdt_attach
265 if (dr_mode == NULL || strcmp(dr_mode, "otg") == 0) {
282 } else if (strcmp(dr_mode, "host") != 0) {
283 aprint_error(": '%s' not supported\n", dr_mode);
  /src/sys/arch/arm/sunxi/
sunxi_musb.c 311 const char *dr_mode; local in function:sunxi_musb_attach
318 dr_mode = fdtbus_get_string(phandle, "dr_mode");
319 if (dr_mode == NULL || strcmp(dr_mode, "host") != 0) {
320 aprint_normal(": '%s' mode not supported\n", dr_mode);
  /src/sys/external/bsd/dwc2/dist/
dwc2_core.h 569 * @dr_mode: Requested mode of operation, one of following:
703 enum usb_dr_mode dr_mode; member in struct:dwc2_hsotg

Completed in 58 milliseconds