jump_label.c 235 B

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