x86/cpuid: Switch to 'static const' specifier

This is the only spot where the 'const static' specifier is used;
everywhere else 'static const' is preferred, as static should be the
first specifier.

This is just a cosmetic fix that aligns this, no functional change.

Signed-off-by: Ralf Ramsauer <ralf.ramsauer@oth-regensburg.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Gayatri Kammela <gayatri.kammela@intel.com>
Link: https://lkml.kernel.org/r/20180307160734.6691-1-ralf.ramsauer@oth-regensburg.de

authored by Ralf Ramsauer and committed by Thomas Gleixner 52586b08 1b88accf

+1 -1
+1 -1
arch/x86/kernel/cpu/cpuid-deps.c
··· 19 * called from cpu hotplug. It shouldn't do anything in this case, 20 * but it's difficult to tell that to the init reference checker. 21 */ 22 - const static struct cpuid_dep cpuid_deps[] = { 23 { X86_FEATURE_XSAVEOPT, X86_FEATURE_XSAVE }, 24 { X86_FEATURE_XSAVEC, X86_FEATURE_XSAVE }, 25 { X86_FEATURE_XSAVES, X86_FEATURE_XSAVE },
··· 19 * called from cpu hotplug. It shouldn't do anything in this case, 20 * but it's difficult to tell that to the init reference checker. 21 */ 22 + static const struct cpuid_dep cpuid_deps[] = { 23 { X86_FEATURE_XSAVEOPT, X86_FEATURE_XSAVE }, 24 { X86_FEATURE_XSAVEC, X86_FEATURE_XSAVE }, 25 { X86_FEATURE_XSAVES, X86_FEATURE_XSAVE },