diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-09-14 23:10:48 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-09-14 23:10:48 +0300 |
commit | e75f801f1febabfa3cf3dcb3a1a05bf3c243d41e (patch) | |
tree | 4f557d17386a42b3db212eb96e552fd45ec04f82 /arch/x86/power/cpu.c | |
parent | ba768535b467bb2d342a1581450394f1148dc8ae (diff) | |
parent | 6faadbbb7f9da70ce484f98f72223c20125a1009 (diff) | |
download | linux-e75f801f1febabfa3cf3dcb3a1a05bf3c243d41e.tar.xz |
Merge branch 'dmi-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging
Pull dmi update from Jean Delvare:
"Mark all struct dmi_system_id instances const"
* 'dmi-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging:
dmi: Mark all struct dmi_system_id instances const
Diffstat (limited to 'arch/x86/power/cpu.c')
-rw-r--r-- | arch/x86/power/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/power/cpu.c b/arch/x86/power/cpu.c index 4d68d59f457d..84fcfde53f8f 100644 --- a/arch/x86/power/cpu.c +++ b/arch/x86/power/cpu.c @@ -428,7 +428,7 @@ static int msr_initialize_bdw(const struct dmi_system_id *d) return msr_init_context(bdw_msr_id, ARRAY_SIZE(bdw_msr_id)); } -static struct dmi_system_id msr_save_dmi_table[] = { +static const struct dmi_system_id msr_save_dmi_table[] = { { .callback = msr_initialize_bdw, .ident = "BROADWELL BDX_EP", |