summaryrefslogtreecommitdiff
path: root/sys/external/bsd/common/include/linux
diff options
context:
space:
mode:
authorriastradh <riastradh@NetBSD.org>2022-02-17 01:21:02 +0000
committerriastradh <riastradh@NetBSD.org>2022-02-17 01:21:02 +0000
commite3e4e02df724d462f05efee59c5e847fe86981ff (patch)
tree5363def439290d9541cd5e558b82e76022102aab /sys/external/bsd/common/include/linux
parent4a72d0e21a5890b14d4f5f06ee10f23fea36376b (diff)
drm/vmwgfx: First draft. Passes make depend, doesn't build yet.
Diffstat (limited to 'sys/external/bsd/common/include/linux')
-rw-r--r--sys/external/bsd/common/include/linux/compiler.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/external/bsd/common/include/linux/compiler.h b/sys/external/bsd/common/include/linux/compiler.h
index a535ad6a35c..5f4e8cd2aba 100644
--- a/sys/external/bsd/common/include/linux/compiler.h
+++ b/sys/external/bsd/common/include/linux/compiler.h
@@ -1,4 +1,4 @@
-/* $NetBSD: compiler.h,v 1.6 2021/12/19 11:26:57 riastradh Exp $ */
+/* $NetBSD: compiler.h,v 1.7 2022/02/17 01:21:02 riastradh Exp $ */
/*-
* Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -50,6 +50,8 @@
#define __maybe_unused __unused
#define noinline __noinline
#define __deprecated /* nothing */
+#define __acquire(X) /* nothing */
+#define __release(X) /* nothing */
#define barrier() __insn_barrier()
#define likely(X) __predict_true(X)