Rémi Bernon : winebus.sys: Remove the now useless bus_remove_hid_device.

Alexandre Julliard julliard at winehq.org
Wed Aug 18 16:22:10 CDT 2021


Module: wine
Branch: master
Commit: 8f065f97c91433eab9d6141e5cce118d00701210
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=8f065f97c91433eab9d6141e5cce118d00701210

Author: Rémi Bernon <rbernon at codeweavers.com>
Date:   Wed Aug 18 09:14:20 2021 +0200

winebus.sys: Remove the now useless bus_remove_hid_device.

Signed-off-by: Rémi Bernon <rbernon at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/winebus.sys/bus.h  |  1 -
 dlls/winebus.sys/main.c | 18 ------------------
 2 files changed, 19 deletions(-)

diff --git a/dlls/winebus.sys/bus.h b/dlls/winebus.sys/bus.h
index f46daa7144d..d07b33e86b3 100644
--- a/dlls/winebus.sys/bus.h
+++ b/dlls/winebus.sys/bus.h
@@ -56,7 +56,6 @@ DEVICE_OBJECT *bus_create_hid_device(const WCHAR *busidW, WORD vid, WORD pid,
                                      const platform_vtbl *vtbl, DWORD platform_data_size) DECLSPEC_HIDDEN;
 DEVICE_OBJECT *bus_find_hid_device(const WCHAR *bus_id, void *platform_dev) DECLSPEC_HIDDEN;
 void bus_unlink_hid_device(DEVICE_OBJECT *device) DECLSPEC_HIDDEN;
-void bus_remove_hid_device(DEVICE_OBJECT *device) DECLSPEC_HIDDEN;
 void process_hid_report(DEVICE_OBJECT *device, BYTE *report, DWORD length) DECLSPEC_HIDDEN;
 DEVICE_OBJECT *bus_enumerate_hid_devices(const WCHAR *bus_id, enum_func function, void *context) DECLSPEC_HIDDEN;
 
diff --git a/dlls/winebus.sys/main.c b/dlls/winebus.sys/main.c
index 3bb534a7d8a..4b246b0059a 100644
--- a/dlls/winebus.sys/main.c
+++ b/dlls/winebus.sys/main.c
@@ -378,24 +378,6 @@ void bus_unlink_hid_device(DEVICE_OBJECT *device)
     LeaveCriticalSection(&device_list_cs);
 }
 
-void bus_remove_hid_device(DEVICE_OBJECT *device)
-{
-    struct device_extension *ext = (struct device_extension *)device->DeviceExtension;
-    struct pnp_device *pnp_device = ext->pnp_device;
-
-    TRACE("(%p)\n", device);
-
-    ext->cs.DebugInfo->Spare[0] = 0;
-    DeleteCriticalSection(&ext->cs);
-
-    HeapFree(GetProcessHeap(), 0, ext->serial);
-    HeapFree(GetProcessHeap(), 0, ext->last_report);
-    IoDeleteDevice(device);
-
-    /* pnp_device must be released after the device is gone */
-    HeapFree(GetProcessHeap(), 0, pnp_device);
-}
-
 static NTSTATUS build_device_relations(DEVICE_RELATIONS **devices)
 {
     int i;




More information about the wine-cvs mailing list