Commit 42ca30b4 authored by Martin Dalecki's avatar Martin Dalecki Committed by Linus Torvalds

[PATCH] kill warnings 1/19

This is fixing missing ; after branch label at two places.
parent 358e9541
...@@ -848,6 +848,7 @@ static void apm_cpu_idle(void) ...@@ -848,6 +848,7 @@ static void apm_cpu_idle(void)
case 1: apm_idle_done = 1; case 1: apm_idle_done = 1;
break; break;
default: /* BIOS refused */ default: /* BIOS refused */
;
} }
} }
if (original_pm_idle) if (original_pm_idle)
......
...@@ -189,10 +189,10 @@ void __init smp_store_cpu_info(int id) ...@@ -189,10 +189,10 @@ void __init smp_store_cpu_info(int id)
/* If we get here, it's not a certified SMP capable AMD system. */ /* If we get here, it's not a certified SMP capable AMD system. */
printk (KERN_INFO "WARNING: This combination of AMD processors is not suitable for SMP.\n"); printk (KERN_INFO "WARNING: This combination of AMD processors is not suitable for SMP.\n");
tainted |= TAINT_UNSAFE_SMP; tainted |= TAINT_UNSAFE_SMP;
} }
valid_k7:
valid_k7:
;
} }
/* /*
......
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