summaryrefslogtreecommitdiff
path: root/rust/helpers/sync.c
diff options
context:
space:
mode:
authorThomas Hellström <thomas.hellstrom@linux.intel.com>2025-04-24 13:34:55 +0200
committerThomas Hellström <thomas.hellstrom@linux.intel.com>2025-04-24 13:34:55 +0200
commit3ab7ae8e07f888f223027f0ef84d33e43919ad55 (patch)
tree298aa9f969b1342b5ea242f84e9a3c16ed20bd44 /rust/helpers/sync.c
parent4ea512714c42c69828b4a2647d206bf404043ad5 (diff)
parentb60301774a8fe6c30b14a95104ec099290a2e904 (diff)
Merge drm/drm-next into drm-xe-next
Backmerge to bring in linux 6.15-rc. Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Diffstat (limited to 'rust/helpers/sync.c')
-rw-r--r--rust/helpers/sync.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/rust/helpers/sync.c b/rust/helpers/sync.c
new file mode 100644
index 000000000000..ff7e68b48810
--- /dev/null
+++ b/rust/helpers/sync.c
@@ -0,0 +1,13 @@
+// SPDX-License-Identifier: GPL-2.0
+
+#include <linux/lockdep.h>
+
+void rust_helper_lockdep_register_key(struct lock_class_key *k)
+{
+ lockdep_register_key(k);
+}
+
+void rust_helper_lockdep_unregister_key(struct lock_class_key *k)
+{
+ lockdep_unregister_key(k);
+}