summaryrefslogtreecommitdiffstats
path: root/drivers/staging/csr/sdioemb/csr_result.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/csr/sdioemb/csr_result.h')
-rw-r--r--drivers/staging/csr/sdioemb/csr_result.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/staging/csr/sdioemb/csr_result.h b/drivers/staging/csr/sdioemb/csr_result.h
new file mode 100644
index 000000000000..9813f3f86ee6
--- /dev/null
+++ b/drivers/staging/csr/sdioemb/csr_result.h
@@ -0,0 +1,16 @@
+/*
+ * Synergy compatible API -- common result codes.
+ *
+ * Copyright (C) 2010 Cambridge Silicon Radio Ltd.
+ *
+ * Refer to LICENSE.txt included with this source code for details on
+ * the license terms.
+ */
+#ifndef CSR_RESULT_H__
+#define CSR_RESULT_H__
+
+typedef CsrUint16 CsrResult;
+#define CSR_RESULT_SUCCESS ((CsrResult) 0x0000)
+#define CSR_RESULT_FAILURE ((CsrResult) 0xffff)
+
+#endif