Commit 693e145c authored by Konrad Rzeszutek Wilk's avatar Konrad Rzeszutek Wilk Committed by Stefan Bader

x86/bugs: Fix the parameters alignment and missing void

Fixes: 7bb4d366 ("x86/bugs: Make cpu_show_common() static")
Fixes: 24f7fc83 ("x86/bugs: Provide boot parameters for the spec_store_bypass_disable mitigation")
Signed-off-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>

CVE-2018-3639 (x86)

(cherry-picked from commit ffed645e)
Signed-off-by: default avatarStefan Bader <stefan.bader@canonical.com>
parent 157771b0
......@@ -556,7 +556,7 @@ static enum ssb_mitigation __init __ssb_select_mitigation(void)
return mode;
}
static void ssb_select_mitigation()
static void ssb_select_mitigation(void)
{
ssb_mode = __ssb_select_mitigation();
......@@ -674,7 +674,7 @@ void x86_spec_ctrl_setup_ap(void)
#endif
static ssize_t cpu_show_common(struct device *dev, struct device_attribute *attr,
char *buf, unsigned int bug)
char *buf, unsigned int bug)
{
if (!boot_cpu_has_bug(bug))
return sprintf(buf, "Not affected\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment