Commit 4a5a77d1 authored by Harvey Harrison's avatar Harvey Harrison Committed by Ingo Molnar

x86: trivial sparse/checkpatch in quirks.c

arch/x86/kernel/quirks.c:384:3: warning: returning void-valued expression
arch/x86/kernel/quirks.c:387:3: warning: returning void-valued expression
arch/x86/kernel/quirks.c:390:3: warning: returning void-valued expression
arch/x86/kernel/quirks.c:393:3: warning: returning void-valued expression
Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent c63855d0
......@@ -381,17 +381,17 @@ void force_hpet_resume(void)
{
switch (force_hpet_resume_type) {
case ICH_FORCE_HPET_RESUME:
return ich_force_hpet_resume();
ich_force_hpet_resume();
return;
case OLD_ICH_FORCE_HPET_RESUME:
return old_ich_force_hpet_resume();
old_ich_force_hpet_resume();
return;
case VT8237_FORCE_HPET_RESUME:
return vt8237_force_hpet_resume();
vt8237_force_hpet_resume();
return;
case NVIDIA_FORCE_HPET_RESUME:
return nvidia_force_hpet_resume();
nvidia_force_hpet_resume();
return;
default:
break;
}
......
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