summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/aic5900/int.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--private/ntos/ndis/aic5900/int.c100
1 files changed, 100 insertions, 0 deletions
diff --git a/private/ntos/ndis/aic5900/int.c b/private/ntos/ndis/aic5900/int.c
new file mode 100644
index 000000000..d01953356
--- /dev/null
+++ b/private/ntos/ndis/aic5900/int.c
@@ -0,0 +1,100 @@
+
+/*++
+
+Copyright (c) 1990-1995 Microsoft Corporation
+
+Module Name:
+
+ D:\nt\private\ntos\ndis\aic5900\int.c
+
+Abstract:
+
+Author:
+
+ Kyle Brandon (KyleB)
+
+Environment:
+
+ Kernel mode
+
+Revision History:
+
+--*/
+
+#include "aic5900.h"
+
+#define MODULE_NUMBER MODULE_INT
+
+VOID
+Aic5900EnableInterrupt(
+ IN NDIS_HANDLE MiniportAdapterContext
+ )
+/*++
+
+Routine Description:
+
+Arguments:
+
+Return Value:
+
+--*/
+{
+
+}
+
+VOID
+Aic5900DisableInterrupt(
+ IN NDIS_HANDLE MiniportAdapterContext
+ )
+/*++
+
+Routine Description:
+
+Arguments:
+
+Return Value:
+
+--*/
+{
+
+}
+
+VOID
+Aic5900ISR(
+ OUT PBOOLEAN InterruptRecognized,
+ OUT PBOOLEAN QueueDpc,
+ IN PVOID Context
+ )
+/*++
+
+Routine Description:
+
+Arguments:
+
+Return Value:
+
+--*/
+{
+ *InterruptRecognized = TRUE;
+ *QueueDpc = FALSE;
+}
+
+VOID
+Aic5900HandleInterrupt(
+ IN NDIS_HANDLE MiniportAdapterContext
+ )
+/*++
+
+Routine Description:
+
+Arguments:
+
+Return Value:
+
+--*/
+{
+
+}
+
+
+