summaryrefslogtreecommitdiffstats
path: root/drivers/staging/csr/sdioemb/csr_sdio_wdf.h
blob: 6f0d71c4733621779a7ad9aafc9e143ebd547377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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__ */