xref: /linux/rust/helpers/jump_label.c (revision 7f4f3b14e8079ecde096bd734af10e30d40c27b7)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 /*
4  * Copyright (C) 2024 Google LLC.
5  */
6 
7 #include <linux/jump_label.h>
8 
9 #ifndef CONFIG_JUMP_LABEL
rust_helper_static_key_count(struct static_key * key)10 int rust_helper_static_key_count(struct static_key *key)
11 {
12 	return static_key_count(key);
13 }
14 #endif
15