diff options
author | Dave Jones <davej@redhat.com> | 2006-12-17 19:09:59 -0500 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2006-12-17 19:09:59 -0500 |
commit | 928ee513c2fc39799cb13302bc02344a849fa37c (patch) | |
tree | e8181688b72f4d2267c624b2c8d77a7151751e1e | |
parent | 8ec9822dd1851698a3d26599c3105c11124b2c0b (diff) | |
download | blackbird-obmc-linux-928ee513c2fc39799cb13302bc02344a849fa37c.tar.gz blackbird-obmc-linux-928ee513c2fc39799cb13302bc02344a849fa37c.zip |
[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 <davej@redhat.com>
-rw-r--r-- | arch/i386/kernel/cpu/cpufreq/longhaul.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |