summaryrefslogtreecommitdiffstats
path: root/kernel/drivers/staging/android/ashmem.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/drivers/staging/android/ashmem.h')
-rw-r--r--kernel/drivers/staging/android/ashmem.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/kernel/drivers/staging/android/ashmem.h b/kernel/drivers/staging/android/ashmem.h
new file mode 100644
index 000000000..5abcfd7aa
--- /dev/null
+++ b/kernel/drivers/staging/android/ashmem.h
@@ -0,0 +1,27 @@
+/*
+ * include/linux/ashmem.h
+ *
+ * Copyright 2008 Google Inc.
+ * Author: Robert Love
+ *
+ * This file is dual licensed. It may be redistributed and/or modified
+ * under the terms of the Apache 2.0 License OR version 2 of the GNU
+ * General Public License.
+ */
+
+#ifndef _LINUX_ASHMEM_H
+#define _LINUX_ASHMEM_H
+
+#include <linux/limits.h>
+#include <linux/ioctl.h>
+#include <linux/compat.h>
+
+#include "uapi/ashmem.h"
+
+/* support of 32bit userspace on 64bit platforms */
+#ifdef CONFIG_COMPAT
+#define COMPAT_ASHMEM_SET_SIZE _IOW(__ASHMEMIOC, 3, compat_size_t)
+#define COMPAT_ASHMEM_SET_PROT_MASK _IOW(__ASHMEMIOC, 5, unsigned int)
+#endif
+
+#endif /* _LINUX_ASHMEM_H */