From: Dave Jones Date: Mon, 18 Dec 2006 00:09:59 +0000 (-0500) Subject: [CPUFREQ] longhaul compile fix. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=928ee513c2fc39799cb13302bc02344a849fa37c;p=linux-beck.git [CPUFREQ] longhaul compile fix. Some gcc's are more anal than others about empty switch labels. error: label at end of compound statement Signed-off-by: Dave Jones --- diff --git a/arch/i386/kernel/cpu/cpufreq/longhaul.c b/arch/i386/kernel/cpu/cpufreq/longhaul.c index e80a7d28d906..6d9c97a690fd 100644 --- a/arch/i386/kernel/cpu/cpufreq/longhaul.c +++ b/arch/i386/kernel/cpu/cpufreq/longhaul.c @@ -790,6 +790,7 @@ static int __init longhaul_init(void) case 10: printk(KERN_ERR PFX "Use acpi-cpufreq driver for VIA C7\n"); default: + ;; } return -ENODEV;