From 7cb3d84a98be70b33ebcaeb7f1e1c2a2e790a113 Mon Sep 17 00:00:00 2001
From: B3n30 <benediktthomas@gmail.com>
Date: Sat, 17 Feb 2018 12:54:48 +0100
Subject: [PATCH] HW checked signals Disconnect, Destroy and Shutdown

---
 src/core/hle/service/nwm/nwm_uds.cpp | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/core/hle/service/nwm/nwm_uds.cpp b/src/core/hle/service/nwm/nwm_uds.cpp
index e1fe0d17e..61c0666d3 100644
--- a/src/core/hle/service/nwm/nwm_uds.cpp
+++ b/src/core/hle/service/nwm/nwm_uds.cpp
@@ -483,7 +483,6 @@ void NWM_UDS::Shutdown(Kernel::HLERequestContext& ctx) {
     if (auto room_member = Network::GetRoomMember().lock())
         room_member->Unbind(wifi_packet_received);
 
-    // TODO(B3N30): Check on HW if Shutdown signals those events
     for (auto bind_node : channel_data) {
         bind_node.second.event->Signal();
     }
@@ -843,7 +842,6 @@ void NWM_UDS::DestroyNetwork(Kernel::HLERequestContext& ctx) {
 
     IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
 
-    // TODO(B3N30): HW test if events get signaled here.
     for (auto bind_node : channel_data) {
         bind_node.second.event->Signal();
     }
@@ -888,7 +886,6 @@ void NWM_UDS::DisconnectNetwork(Kernel::HLERequestContext& ctx) {
 
     SendPacket(deauth);
 
-    // TODO(B3N30): Check on HW if Shutdown signals those events
     for (auto bind_node : channel_data) {
         bind_node.second.event->Signal();
     }