diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2017-11-20 01:56:44 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-11-23 05:00:17 +0000 |
commit | 8f06ce35125869f631a3c7a072503103feca227c (patch) | |
tree | fa092f519f8b8fdbc300ce98584d1271420ea0c5 /src/arch/x86 | |
parent | 46234ea36be69b89c42b550838092ecc0f0bf972 (diff) |
Constify struct cpu_device_id instances
There is currently no case where a struct cpu_device_id instance needs
to be modified. Thus, declare all instances as const.
Change-Id: I5ec7460b56d75d255b3451d76a46df76a51d6365
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/22526
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/cpu.c | 2 | ||||
-rw-r--r-- | src/arch/x86/include/arch/cpu.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/cpu.c b/src/arch/x86/cpu.c index ff82661447..cfcfdbd5d2 100644 --- a/src/arch/x86/cpu.c +++ b/src/arch/x86/cpu.c @@ -203,7 +203,7 @@ struct cpu_driver *find_cpu_driver(struct device *cpu) { struct cpu_driver *driver; for (driver = _cpu_drivers; driver < _ecpu_drivers; driver++) { - struct cpu_device_id *id; + const struct cpu_device_id *id; for (id = driver->id_table; id->vendor != X86_VENDOR_INVALID; id++) { if ((cpu->vendor == id->vendor) && diff --git a/src/arch/x86/include/arch/cpu.h b/src/arch/x86/include/arch/cpu.h index 1cba0affa9..5d44aaeb6c 100644 --- a/src/arch/x86/include/arch/cpu.h +++ b/src/arch/x86/include/arch/cpu.h @@ -178,7 +178,7 @@ struct cpu_device_id { struct cpu_driver { struct device_operations *ops; - struct cpu_device_id *id_table; + const struct cpu_device_id *id_table; struct acpi_cstate *cstates; }; |