| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * sc520_freq.c: cpufreq driver for the AMD Elan sc520 |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 2005 Sean Young <sean@mess.org> |
|---|
| 5 | | - * |
|---|
| 6 | | - * This program is free software; you can redistribute it and/or |
|---|
| 7 | | - * modify it under the terms of the GNU General Public License |
|---|
| 8 | | - * as published by the Free Software Foundation; either version |
|---|
| 9 | | - * 2 of the License, or (at your option) any later version. |
|---|
| 10 | 6 | * |
|---|
| 11 | 7 | * Based on elanfreq.c |
|---|
| 12 | 8 | * |
|---|
| .. | .. |
|---|
| 99 | 95 | }; |
|---|
| 100 | 96 | |
|---|
| 101 | 97 | static const struct x86_cpu_id sc520_ids[] = { |
|---|
| 102 | | - { X86_VENDOR_AMD, 4, 9 }, |
|---|
| 98 | + X86_MATCH_VENDOR_FAM_MODEL(AMD, 4, 9, NULL), |
|---|
| 103 | 99 | {} |
|---|
| 104 | 100 | }; |
|---|
| 105 | 101 | MODULE_DEVICE_TABLE(x86cpu, sc520_ids); |
|---|