Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
06ab0677
Commit
06ab0677
authored
Apr 17, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Apr 19, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hidclass.sys: Set PhysicalDeviceObject to the bus PDO.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a1736729
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
pnp.c
dlls/hidclass.sys/pnp.c
+1
-1
driver_hid.c
dlls/ntoskrnl.exe/tests/driver_hid.c
+1
-1
No files found.
dlls/hidclass.sys/pnp.c
View file @
06ab0677
...
@@ -135,7 +135,7 @@ static NTSTATUS WINAPI driver_add_device(DRIVER_OBJECT *driver, DEVICE_OBJECT *b
...
@@ -135,7 +135,7 @@ static NTSTATUS WINAPI driver_add_device(DRIVER_OBJECT *driver, DEVICE_OBJECT *b
ext
=
fdo
->
DeviceExtension
;
ext
=
fdo
->
DeviceExtension
;
ext
->
is_fdo
=
TRUE
;
ext
->
is_fdo
=
TRUE
;
ext
->
u
.
fdo
.
hid_ext
.
MiniDeviceExtension
=
ext
+
1
;
ext
->
u
.
fdo
.
hid_ext
.
MiniDeviceExtension
=
ext
+
1
;
ext
->
u
.
fdo
.
hid_ext
.
PhysicalDeviceObject
=
f
do
;
ext
->
u
.
fdo
.
hid_ext
.
PhysicalDeviceObject
=
bus_p
do
;
ext
->
u
.
fdo
.
hid_ext
.
NextDeviceObject
=
bus_pdo
;
ext
->
u
.
fdo
.
hid_ext
.
NextDeviceObject
=
bus_pdo
;
swprintf
(
ext
->
device_id
,
ARRAY_SIZE
(
ext
->
device_id
),
L"HID
\\
%s"
,
wcsrchr
(
device_id
,
'\\'
)
+
1
);
swprintf
(
ext
->
device_id
,
ARRAY_SIZE
(
ext
->
device_id
),
L"HID
\\
%s"
,
wcsrchr
(
device_id
,
'\\'
)
+
1
);
wcscpy
(
ext
->
instance_id
,
instance_id
);
wcscpy
(
ext
->
instance_id
,
instance_id
);
...
...
dlls/ntoskrnl.exe/tests/driver_hid.c
View file @
06ab0677
...
@@ -215,7 +215,7 @@ static NTSTATUS WINAPI driver_add_device(DRIVER_OBJECT *driver, DEVICE_OBJECT *f
...
@@ -215,7 +215,7 @@ static NTSTATUS WINAPI driver_add_device(DRIVER_OBJECT *driver, DEVICE_OBJECT *f
/* We should be given the FDO, not the PDO. */
/* We should be given the FDO, not the PDO. */
ok
(
!!
ext
->
PhysicalDeviceObject
,
"expected non-NULL pdo
\n
"
);
ok
(
!!
ext
->
PhysicalDeviceObject
,
"expected non-NULL pdo
\n
"
);
todo_wine
ok
(
ext
->
NextDeviceObject
==
ext
->
PhysicalDeviceObject
,
"got pdo %p, next %p
\n
"
,
ok
(
ext
->
NextDeviceObject
==
ext
->
PhysicalDeviceObject
,
"got pdo %p, next %p
\n
"
,
ext
->
PhysicalDeviceObject
,
ext
->
NextDeviceObject
);
ext
->
PhysicalDeviceObject
,
ext
->
NextDeviceObject
);
todo_wine
ok
(
ext
->
NextDeviceObject
->
AttachedDevice
==
fdo
,
"wrong attached device
\n
"
);
todo_wine
ok
(
ext
->
NextDeviceObject
->
AttachedDevice
==
fdo
,
"wrong attached device
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment