summaryrefslogtreecommitdiff
path: root/spb/SkeletonI2C/controller.h
diff options
context:
space:
mode:
authorWei Mao <[email protected]>2017-03-17 19:47:04 -0700
committerWei Mao <[email protected]>2017-03-17 19:47:04 -0700
commit1a3e0d580380e58bf336a242d2affc8a1e2d1ddf (patch)
treebf5d9c5b0b4cba1b81726b9f78c4d5ff5c636fea /spb/SkeletonI2C/controller.h
parentda21c8784c83c5fd614f3030323e229d6a5fb10e (diff)
Fix cases
Diffstat (limited to 'spb/SkeletonI2C/controller.h')
-rw-r--r--spb/SkeletonI2C/controller.h76
1 files changed, 0 insertions, 76 deletions
diff --git a/spb/SkeletonI2C/controller.h b/spb/SkeletonI2C/controller.h
deleted file mode 100644
index 40bcdf67..00000000
--- a/spb/SkeletonI2C/controller.h
+++ /dev/null
@@ -1,76 +0,0 @@
-/*++
-
-Copyright (c) Microsoft Corporation. All rights reserved.
-
-Module Name:
-
- controller.h
-
-Abstract:
-
- This module contains the controller-specific function
- definitions.
-
-Environment:
-
- kernel-mode only
-
-Revision History:
-
---*/
-
-#ifndef _CONTROLLER_H_
-#define _CONTROLLER_H_
-
-//
-// Controller specific function prototypes.
-//
-
-VOID ControllerInitialize(
- _In_ PPBC_DEVICE pDevice);
-
-VOID ControllerUninitialize(
- _In_ PPBC_DEVICE pDevice);
-
-VOID
-ControllerConfigureForTransfer(
- _In_ PPBC_DEVICE pDevice,
- _In_ PPBC_REQUEST pRequest);
-
-NTSTATUS
-ControllerTransferData(
- _In_ PPBC_DEVICE pDevice,
- _In_ PPBC_REQUEST pRequest);
-
-VOID
-ControllerCompleteTransfer(
- _In_ PPBC_DEVICE pDevice,
- _In_ PPBC_REQUEST pRequest,
- _In_ BOOLEAN AbortSequence);
-
-VOID
-ControllerEnableInterrupts(
- _In_ PPBC_DEVICE pDevice,
- _In_ ULONG InterruptMask);
-
-VOID
-ControllerDisableInterrupts(
- _In_ PPBC_DEVICE pDevice);
-
-ULONG
-ControllerGetInterruptStatus(
- _In_ PPBC_DEVICE pDevice,
- _In_ ULONG InterruptMask);
-
-VOID
-ControllerAcknowledgeInterrupts(
- _In_ PPBC_DEVICE pDevice,
- _In_ ULONG InterruptMask);
-
-VOID
-ControllerProcessInterrupts(
- _In_ PPBC_DEVICE pDevice,
- _In_ PPBC_REQUEST pRequest,
- _In_ ULONG InterruptStatus);
-
-#endif