mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[STORPORT] Check status code of the call to PortFdoConnectInterrupt().
CORE-13866
This commit is contained in:
parent
7571d351ce
commit
58bb4b31bc
1 changed files with 6 additions and 2 deletions
|
@ -139,9 +139,13 @@ PortFdoStartMiniport(
|
|||
return Status;
|
||||
}
|
||||
|
||||
|
||||
/* Connect the configured interrupt */
|
||||
Status = PortFdoConnectInterrupt(DeviceExtension);
|
||||
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("PortFdoConnectInterrupt() failed (Status 0x%08lx)\n", Status);
|
||||
return Status;
|
||||
}
|
||||
|
||||
/* Call the miniports HwInitialize function */
|
||||
Status = MiniportHwInitialize(&DeviceExtension->Miniport);
|
||||
|
|
Loading…
Reference in a new issue