diff options
author | Mark Brown <broonie@kernel.org> | 2024-10-29 14:33:54 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-10-29 14:33:54 +0000 |
commit | 336f0fbf510880f7b2f9ea7e473fefc02222070c (patch) | |
tree | 0c92b6c9f51d68f1260063a9a2175f314d5de09b /rust/helpers/mutex.c | |
parent | caf78b0465053c23aa6211b9815dd5433766627d (diff) | |
parent | 8e929cb546ee42c9a61d24fae60605e9e3192354 (diff) |
regmap: Merge up fixes from v6.12-rc3
For the benefit of CI.
Diffstat (limited to 'rust/helpers/mutex.c')
-rw-r--r-- | rust/helpers/mutex.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/rust/helpers/mutex.c b/rust/helpers/mutex.c index 200db7e6279f..a17ca8cdb50c 100644 --- a/rust/helpers/mutex.c +++ b/rust/helpers/mutex.c @@ -7,3 +7,9 @@ void rust_helper_mutex_lock(struct mutex *lock) { mutex_lock(lock); } + +void rust_helper___mutex_init(struct mutex *mutex, const char *name, + struct lock_class_key *key) +{ + __mutex_init(mutex, name, key); +} |