winebus.sys: Remove the now useless get_unix_device.

Signed-off-by: Rémi Bernon <rbernon@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Rémi Bernon 2021-09-15 09:04:45 +02:00 committed by Alexandre Julliard
parent be503e97fb
commit 5f8ebe7a60
2 changed files with 0 additions and 8 deletions

View File

@ -27,8 +27,6 @@
#include "unixlib.h"
struct unix_device *get_unix_device(DEVICE_OBJECT *device) DECLSPEC_HIDDEN;
/* General Bus Functions */
BOOL is_xbox_gamepad(WORD vid, WORD pid) DECLSPEC_HIDDEN;

View File

@ -217,12 +217,6 @@ static void unix_device_set_feature_report(DEVICE_OBJECT *device, HID_XFER_PACKE
winebus_call(device_set_feature_report, &params);
}
struct unix_device *get_unix_device(DEVICE_OBJECT *device)
{
struct device_extension *ext = (struct device_extension *)device->DeviceExtension;
return ext->unix_device;
}
static DWORD get_device_index(struct device_desc *desc)
{
struct device_extension *ext;