| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * This file was based upon code in Powertweak Linux (http://powertweak.sf.net) |
|---|
| 3 | 4 | * (C) 2000-2003 Dave Jones, Arjan van de Ven, Janne Pänkälä, |
|---|
| 4 | 5 | * Dominik Brodowski. |
|---|
| 5 | | - * |
|---|
| 6 | | - * Licensed under the terms of the GNU GPL License version 2. |
|---|
| 7 | 6 | * |
|---|
| 8 | 7 | * BIG FAT DISCLAIMER: Work in progress code. Possibly *dangerous* |
|---|
| 9 | 8 | */ |
|---|
| .. | .. |
|---|
| 259 | 258 | }; |
|---|
| 260 | 259 | |
|---|
| 261 | 260 | 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), |
|---|
| 264 | 263 | {} |
|---|
| 265 | 264 | }; |
|---|
| 266 | 265 | MODULE_DEVICE_TABLE(x86cpu, powernow_k6_ids); |
|---|