From 5b31b764c03bf3383185acfd05fe01beb688e996 Mon Sep 17 00:00:00 2001 From: Aric Stewart <aric@codeweavers.com> Date: Tue, 13 Nov 2018 20:48:05 -0600 Subject: [PATCH] hidclass.sys: IoCreateSymbolicLink is now called by IoSetDeviceInterfaceState. Signed-off-by: Aric Stewart <aric@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> --- dlls/hidclass.sys/device.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/dlls/hidclass.sys/device.c b/dlls/hidclass.sys/device.c index 1591390376f..a841575667f 100644 --- a/dlls/hidclass.sys/device.c +++ b/dlls/hidclass.sys/device.c @@ -121,13 +121,6 @@ NTSTATUS HID_LinkDevice(DEVICE_OBJECT *device) return status; } - status = IoCreateSymbolicLink( &ext->link_name, &nameW ); - if (status != STATUS_SUCCESS) - { - FIXME( "failed to create link error %x\n", status ); - return status; - } - return STATUS_SUCCESS; error: -- GitLab