Module Name: src Committed By: riastradh Date: Sun Dec 19 00:54:36 UTC 2021
Modified Files: src/sys/external/bsd/drm2/include/linux: sync_file.h Log Message: <linux/sync_file.h> stubs. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/external/bsd/drm2/include/linux/sync_file.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/sync_file.h diff -u src/sys/external/bsd/drm2/include/linux/sync_file.h:1.1 src/sys/external/bsd/drm2/include/linux/sync_file.h:1.2 --- src/sys/external/bsd/drm2/include/linux/sync_file.h:1.1 Sun Dec 19 00:28:55 2021 +++ src/sys/external/bsd/drm2/include/linux/sync_file.h Sun Dec 19 00:54:36 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: sync_file.h,v 1.1 2021/12/19 00:28:55 riastradh Exp $ */ +/* $NetBSD: sync_file.h,v 1.2 2021/12/19 00:54:36 riastradh Exp $ */ /*- * Copyright (c) 2018 The NetBSD Foundation, Inc. @@ -32,4 +32,12 @@ #ifndef _LINUX_SYNC_FILE_H_ #define _LINUX_SYNC_FILE_H_ +struct dma_fence; +struct sync_file; + +struct sync_file * + sync_file_create(struct dma_fence *); +struct dma_fence * + sync_file_get_fence(int); + #endif /* _LINUX_SYNC_FILE_H_ */