forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/drivers/cpufreq/elanfreq.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * elanfreq: cpufreq driver for the AMD ELAN family
34 *
....@@ -7,13 +8,7 @@
78 *
89 * All Rights Reserved.
910 *
10
- * This program is free software; you can redistribute it and/or
11
- * modify it under the terms of the GNU General Public License
12
- * as published by the Free Software Foundation; either version
13
- * 2 of the License, or (at your option) any later version.
14
- *
1511 * 2002-02-13: - initial revision for 2.4.18-pre9 by Robert Schwebel
16
- *
1712 */
1813
1914 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
....@@ -203,7 +198,7 @@
203198 };
204199
205200 static const struct x86_cpu_id elan_id[] = {
206
- { X86_VENDOR_AMD, 4, 10, },
201
+ X86_MATCH_VENDOR_FAM_MODEL(AMD, 4, 10, NULL),
207202 {}
208203 };
209204 MODULE_DEVICE_TABLE(x86cpu, elan_id);