Files
chromebox_10th_audio_driver/kernel-src/linux-hwe-6.17-6.17.0.bak-no-debian/rust/helpers/jump_label.c
2026-04-04 20:52:05 +08:00

15 lines
235 B
C

// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2024 Google LLC.
*/
#include <linux/jump_label.h>
#ifndef CONFIG_JUMP_LABEL
int rust_helper_static_key_count(struct static_key *key)
{
return static_key_count(key);
}
#endif