From ff3a4f984426fe62472ea7d147b808218a6cc7c2 Mon Sep 17 00:00:00 2001
From: yellows8 <yellows8@users.noreply.github.com>
Date: Fri, 1 Mar 2019 12:40:23 -0500
Subject: [PATCH] Renamed usbDsEndpoint_StallCtrl to *Stall.

---
 nx/include/switch/services/usbds.h | 2 +-
 nx/source/services/usbds.c         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/nx/include/switch/services/usbds.h b/nx/include/switch/services/usbds.h
index 47430ec1..2d33481f 100644
--- a/nx/include/switch/services/usbds.h
+++ b/nx/include/switch/services/usbds.h
@@ -115,6 +115,6 @@ void usbDsEndpoint_Close(UsbDsEndpoint* endpoint);
 Result usbDsEndpoint_Cancel(UsbDsEndpoint* endpoint);
 Result usbDsEndpoint_PostBufferAsync(UsbDsEndpoint* endpoint, void* buffer, size_t size, u32* urbId);
 Result usbDsEndpoint_GetReportData(UsbDsEndpoint* endpoint, UsbDsReportData* out);
-Result usbDsEndpoint_StallCtrl(UsbDsEndpoint* endpoint);
+Result usbDsEndpoint_Stall(UsbDsEndpoint* endpoint);
 Result usbDsEndpoint_SetZlt(UsbDsEndpoint* endpoint, bool zlt); // Sets Zero Length Termination for endpoint
 
diff --git a/nx/source/services/usbds.c b/nx/source/services/usbds.c
index 3defe491..b978d735 100644
--- a/nx/source/services/usbds.c
+++ b/nx/source/services/usbds.c
@@ -1129,7 +1129,7 @@ Result usbDsEndpoint_GetReportData(UsbDsEndpoint* endpoint, UsbDsReportData *out
     return _usbDsGetReport(&endpoint->h, 3, out);
 }
 
-Result usbDsEndpoint_StallCtrl(UsbDsEndpoint* endpoint)
+Result usbDsEndpoint_Stall(UsbDsEndpoint* endpoint)
 {
     if(!endpoint->initialized)return MAKERESULT(Module_Libnx, LibnxError_NotInitialized);