• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7800-V1.0.2.28/target/linux/ramips/files/drivers/usb/dwc_otg/

Lines Matching refs:retval

201 	int retval = 0;
217 retval++; \
259 retval++;
278 retval++;
290 retval++;
305 retval++;
353 retval += DWC_OTG_PARAM_CHECK_VALID(otg_cap, "otg_cap",
383 retval += DWC_OTG_PARAM_CHECK_VALID(dma_enable, "dma_enable",
387 retval += DWC_OTG_PARAM_CHECK_VALID(dma_desc_enable, "dma_desc_enable",
392 retval += DWC_OTG_PARAM_CHECK_VALID(opt, "opt", 1, 0);
396 retval += DWC_OTG_PARAM_CHECK_VALID(host_support_fs_ls_low_power,
400 retval += DWC_OTG_PARAM_CHECK_VALID(enable_dynamic_fifo,
405 retval += DWC_OTG_PARAM_CHECK_VALID(data_fifo_size,
410 retval += DWC_OTG_PARAM_CHECK_VALID(dev_rx_fifo_size,
415 retval += DWC_OTG_PARAM_CHECK_VALID(dev_nperio_tx_fifo_size,
420 retval += DWC_OTG_PARAM_CHECK_VALID(host_rx_fifo_size,
425 retval += DWC_OTG_PARAM_CHECK_VALID(host_nperio_tx_fifo_size,
430 retval += DWC_OTG_PARAM_CHECK_VALID(host_perio_tx_fifo_size,
435 retval += DWC_OTG_PARAM_CHECK_VALID(max_transfer_size,
440 retval += DWC_OTG_PARAM_CHECK_VALID(max_packet_count,
445 retval += DWC_OTG_PARAM_CHECK_VALID(host_channels,
450 retval += DWC_OTG_PARAM_CHECK_VALID(dev_endpoints,
463 retval += DWC_OTG_PARAM_CHECK_VALID(phy_type,
466 retval += DWC_OTG_PARAM_CHECK_VALID(phy_type,
501 retval += DWC_OTG_PARAM_CHECK_VALID(speed, "speed",
505 retval += DWC_OTG_PARAM_CHECK_VALID(host_ls_low_power_phy_clk,
517 retval += DWC_OTG_PARAM_CHECK_VALID(i2c_enable, "i2c_enable", 1, 0);
519 retval += DWC_OTG_PARAM_CHECK_VALID(i2c_enable,
540 retval += error;
543 retval += DWC_OTG_PARAM_CHECK_VALID(en_multiple_tx_fifo, "en_multiple_tx_fifo",
562 retval += error;
565 retval += DWC_OTG_PARAM_CHECK_VALID(thr_ctl, "thr_ctl",
572 retval += DWC_OTG_PARAM_CHECK_VALID(pti_enable, "pti_enable",
576 retval += DWC_OTG_PARAM_CHECK_VALID(mpi_enable, "mpi_enable",
579 return retval;
593 int32_t retval = IRQ_NONE;
595 retval = dwc_otg_handle_common_intr(otg_dev->core_if);
596 return IRQ_RETVAL(retval);
686 int retval = 0;
696 retval = -ENOMEM;
708 retval = -EINVAL;
715 retval = -EINVAL;
726 retval = -EBUSY;
736 retval = -ENOMEM;
753 retval = -EINVAL;
778 retval = -ENOMEM;
786 retval = -EINVAL;
807 retval = request_irq(otg_dev->irq, dwc_otg_common_irq,
809 if (retval) {
811 retval = -EBUSY;
826 retval = dwc_otg_pcd_init(&pdev->dev);
827 if (retval != 0) {
837 retval = dwc_otg_hcd_init(&pdev->dev);
838 if (retval != 0) {
855 return retval;
889 int retval = 0;
894 retval = platform_driver_register(&dwc_otg_driver);
895 if (retval) {
896 printk(KERN_ERR "%s retval=%d\n", __func__, retval);
897 return retval;
903 return retval;