cpufreq.c 229 B

1234567891011
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/cpufreq.h>
  3. #ifdef CONFIG_CPU_FREQ
  4. __rust_helper void
  5. rust_helper_cpufreq_register_em_with_opp(struct cpufreq_policy *policy)
  6. {
  7. cpufreq_register_em_with_opp(policy);
  8. }
  9. #endif