[CPUFREQ] Change loglevels on powernow-k8 bios error printk's.
authorDave Jones <davej@redhat.com>
Tue, 6 Dec 2005 23:03:55 +0000 (15:03 -0800)
committerDave Jones <davej@redhat.com>
Tue, 6 Dec 2005 23:03:55 +0000 (15:03 -0800)
If a user has booted with 'quiet', some important messages don't
get displayed which really should. We've seen at least one case
where powernow-k8 stopped working, and the user needed a BIOS update
that they didn't know about.

Signed-off-by: Dave Jones <davej@redhat.com>
arch/i386/kernel/cpu/cpufreq/powernow-k8.c

index f44c1b1b04e9719ee901ede6c8cb1f88bbe965d1..0fbbd4c1072e6c19045d513af0acc9af9ad82a22 100644 (file)
@@ -635,7 +635,7 @@ static int find_psb_table(struct powernow_k8_data *data)
 
                dprintk("table vers: 0x%x\n", psb->tableversion);
                if (psb->tableversion != PSB_VERSION_1_4) {
-                       printk(KERN_INFO BFX "PSB table is not v1.4\n");
+                       printk(KERN_ERR BFX "PSB table is not v1.4\n");
                        return -ENODEV;
                }
 
@@ -693,7 +693,7 @@ static int find_psb_table(struct powernow_k8_data *data)
         * BIOS and Kernel Developer's Guide, which is available on
         * www.amd.com
         */
-       printk(KERN_INFO PFX "BIOS error - no PSB or ACPI _PSS objects\n");
+       printk(KERN_ERR PFX "BIOS error - no PSB or ACPI _PSS objects\n");
        return -ENODEV;
 }