summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/nvodm/nvodm_services.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-tegra/nvodm/nvodm_services.c')
-rwxr-xr-x[-rw-r--r--]arch/arm/mach-tegra/nvodm/nvodm_services.c21
1 files changed, 3 insertions, 18 deletions
diff --git a/arch/arm/mach-tegra/nvodm/nvodm_services.c b/arch/arm/mach-tegra/nvodm/nvodm_services.c
index 76f1bb344760..97e950e59d9b 100644..100755
--- a/arch/arm/mach-tegra/nvodm/nvodm_services.c
+++ b/arch/arm/mach-tegra/nvodm/nvodm_services.c
@@ -937,24 +937,9 @@ NvOdmPwmConfig(NvOdmServicesPwmHandle hOdmPwm,
void NvOdmEnableOtgCircuitry(NvBool Enable)
{
- NvRmDeviceHandle hRmDevice;
- NvRmAnalogUsbConfig UsbConfig;
- NvError e;
-
- // Open RM device handle
- NV_CHECK_ERROR_CLEANUP(NvRmOpen(&hRmDevice, 0));
-
- UsbConfig.InParam = NvRmAnalogUsbInputParam_ConfigureUsbPhy;
- NV_CHECK_ERROR_CLEANUP(
- NvRmAnalogInterfaceControl(hRmDevice, NvRmAnalogInterface_Usb,
- NV_TRUE, &UsbConfig, sizeof(NvRmAnalogUsbConfig))
- );
-
- fail:
- if (hRmDevice)
- {
- NvRmClose(hRmDevice);
- }
+ // Rm analog interface calls related to usb are deleted. This API does nothing.
+ // This API should not be called for usb phy related operations
+ return;
}
NvBool NvOdmUsbIsConnected(void)