hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/cpufreq/powernow-k6.c
....@@ -1,9 +1,8 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /*
23 * This file was based upon code in Powertweak Linux (http://powertweak.sf.net)
34 * (C) 2000-2003 Dave Jones, Arjan van de Ven, Janne Pänkälä,
45 * Dominik Brodowski.
5
- *
6
- * Licensed under the terms of the GNU GPL License version 2.
76 *
87 * BIG FAT DISCLAIMER: Work in progress code. Possibly *dangerous*
98 */
....@@ -259,8 +258,8 @@
259258 };
260259
261260 static const struct x86_cpu_id powernow_k6_ids[] = {
262
- { X86_VENDOR_AMD, 5, 12 },
263
- { X86_VENDOR_AMD, 5, 13 },
261
+ X86_MATCH_VENDOR_FAM_MODEL(AMD, 5, 12, NULL),
262
+ X86_MATCH_VENDOR_FAM_MODEL(AMD, 5, 13, NULL),
264263 {}
265264 };
266265 MODULE_DEVICE_TABLE(x86cpu, powernow_k6_ids);