Module Name: src
Committed By: riastradh
Date: Sun Dec 19 11:39:38 UTC 2021
Modified Files:
src/sys/external/bsd/drm2/include/linux: async.h
Log Message:
linux: stub async_synchronize_cookie
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/external/bsd/drm2/include/linux/async.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/external/bsd/drm2/include/linux/async.h
diff -u src/sys/external/bsd/drm2/include/linux/async.h:1.4 src/sys/external/bsd/drm2/include/linux/async.h:1.5
--- src/sys/external/bsd/drm2/include/linux/async.h:1.4 Mon Aug 27 07:55:49 2018
+++ src/sys/external/bsd/drm2/include/linux/async.h Sun Dec 19 11:39:38 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: async.h,v 1.4 2018/08/27 07:55:49 riastradh Exp $ */
+/* $NetBSD: async.h,v 1.5 2021/12/19 11:39:38 riastradh Exp $ */
/*-
* Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -61,4 +61,15 @@ async_synchronize_full(void)
{
}
+/*
+ * async_synchronize_cookie(cookie)
+ *
+ * Wait until the function passed to the async_schedule call that
+ * returned cookie has completed.
+ */
+static inline void
+async_synchronize_cookie(unsigned long cookie)
+{
+}
+
#endif /* _LINUX_ASYNC_H_ */