Skip to content

Commit 3a7c703

Browse files
committed
[Kernel] Defer cpufreq get_policy and asm/amd/nb.h to v6.16
1 parent b622338 commit 3a7c703

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
COREFREQ_MAJOR = 2
66
COREFREQ_MINOR = 0
7-
COREFREQ_REV = 6
7+
COREFREQ_REV = 7
88
HW = $(shell uname -m)
99
CC ?= cc
1010
WARNING ?= -Wall -Wfatal-errors

aarch64/corefreqk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2299,7 +2299,7 @@ static PROCESSOR_SPECIFIC *LookupProcessor(void)
22992299
}
23002300

23012301
#ifdef CONFIG_CPU_FREQ
2302-
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 15, 0)
2302+
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 16, 0)
23032303
static int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
23042304
{
23052305
struct cpufreq_policy *cpu_policy __free(put_cpufreq_policy);

ppc64le/corefreqk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ static PROCESSOR_SPECIFIC *LookupProcessor(void)
959959
}
960960

961961
#ifdef CONFIG_CPU_FREQ
962-
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 15, 0)
962+
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 16, 0)
963963
static int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
964964
{
965965
struct cpufreq_policy *cpu_policy __free(put_cpufreq_policy);

riscv64/corefreqk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ static PROCESSOR_SPECIFIC *LookupProcessor(void)
943943
}
944944

945945
#ifdef CONFIG_CPU_FREQ
946-
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 15, 0)
946+
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 16, 0)
947947
static int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
948948
{
949949
struct cpufreq_policy *cpu_policy __free(put_cpufreq_policy);

x86_64/corefreqk.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
#endif /* CONFIG_XEN */
5454
#include <asm/mwait.h>
5555
#ifdef CONFIG_AMD_NB
56-
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 15, 0)
56+
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 16, 0)
5757
#include <asm/amd/nb.h>
5858
#else
5959
#include <asm/amd_nb.h>
@@ -20844,7 +20844,7 @@ static void Stop_Uncore_AMD_Family_17h(void *arg)
2084420844

2084520845

2084620846
#ifdef CONFIG_CPU_FREQ
20847-
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 15, 0)
20847+
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 16, 0)
2084820848
static int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
2084920849
{
2085020850
struct cpufreq_policy *cpu_policy __free(put_cpufreq_policy);

0 commit comments

Comments
 (0)