Skip to content

Commit

Permalink
[SCSIPORT] ScsiPortDeviceControl: Add IOCTL_ATA_* stub
Browse files Browse the repository at this point in the history
  • Loading branch information
TAN-Gaming committed Dec 30, 2023
1 parent 40131fd commit 817c94d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions drivers/storage/port/scsiport/ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,16 @@ ScsiPortDeviceControl(
status = STATUS_NOT_IMPLEMENTED;
break;

case IOCTL_ATA_PASS_THROUGH:
DPRINT1("IOCTL_ATA_PASS_THROUGH unimplemented!\n");
status = STATUS_NOT_IMPLEMENTED;
break;

case IOCTL_ATA_PASS_THROUGH_DIRECT:
DPRINT1("IOCTL_ATA_PASS_THROUGH_DIRECT unimplemented!\n");
status = STATUS_NOT_IMPLEMENTED;
break;

default:
DPRINT1("unknown ioctl code: 0x%lX\n", Stack->Parameters.DeviceIoControl.IoControlCode);
status = STATUS_NOT_SUPPORTED;
Expand Down

0 comments on commit 817c94d

Please sign in to comment.