Author: tkreuzer
Date: Sat Jun 13 02:31:02 2009
New Revision: 41398
URL:
http://svn.reactos.org/svn/reactos?rev=41398&view=rev
Log:
Patch by Olaf Siejka (caemyr gmail com):
add stubs for unimplmented cases in ScsiPortNotification
Modified:
trunk/reactos/drivers/storage/scsiport/scsiport.c
Modified: trunk/reactos/drivers/storage/scsiport/scsiport.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/storage/scsiport/s…
==============================================================================
--- trunk/reactos/drivers/storage/scsiport/scsiport.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/storage/scsiport/scsiport.c [iso-8859-1] Sat Jun 13 02:31:02
2009
@@ -1981,8 +1981,24 @@
SCSI_PORT_RESET | SCSI_PORT_RESET_REPORTED;
break;
+ case CallDisableInterrupts:
+ DPRINT1("UNIMPLEMENTED SCSI Notification called:
CallDisableInterrupts!\n");
+ break;
+
+ case CallEnableInterrupts:
+ DPRINT1("UNIMPLEMENTED SCSI Notification called:
CallEnableInterrupts!\n");
+ break;
+
+ case RequestTimerCall:
+ DPRINT1("UNIMPLEMENTED SCSI Notification called:
RequestTimerCall!\n");
+ break;
+
+ case BusChangeDetected:
+ DPRINT1("UNIMPLEMENTED SCSI Notification called:
BusChangeDetected!\n");
+ break;
+
default:
- DPRINT1 ("Unsupported notification %lu\n", NotificationType);
+ DPRINT1 ("Unsupported notification from WMI: %lu\n", NotificationType);
break;
}