summaryrefslogtreecommitdiffstats
path: root/drivers/staging/csr/sdioemb/csr_sdio_wdf.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/csr/sdioemb/csr_sdio_wdf.h')
-rw-r--r--drivers/staging/csr/sdioemb/csr_sdio_wdf.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/drivers/staging/csr/sdioemb/csr_sdio_wdf.h b/drivers/staging/csr/sdioemb/csr_sdio_wdf.h
new file mode 100644
index 000000000000..6f0d71c47336
--- /dev/null
+++ b/drivers/staging/csr/sdioemb/csr_sdio_wdf.h
@@ -0,0 +1,22 @@
+/*
+ * Synergy compatible API -- helpers for Windows Driver Framework drivers.
+ *
+ *
+ * Refer to LICENSE.txt included with this source code for details on
+ * the license terms.
+ */
+#ifndef CSR_SDIO_WDF_H__
+#define CSR_SDIO_WDF_H__
+
+#include <wdf.h>
+
+NTSTATUS CsrSdioWdfDeviceInit(WDFDEVICE device);
+void CsrSdioWdfDeviceCleanup(WDFDEVICE device);
+
+NTSTATUS CsrSdioWdfDeviceAdd(WDFDEVICE device);
+void CsrSdioWdfDeviceDel(WDFDEVICE device);
+
+NTSTATUS CsrSdioWdfDeviceSuspend(WDFDEVICE device);
+NTSTATUS CsrSdioWdfDeviceResume(WDFDEVICE device);
+
+#endif /* #ifndef CSR_SDIO_WDF_H__ */