]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
PM: Use appropriate printk() priority level in trace.c
authorMandeep Singh Baines <msb@chromium.org>
Mon, 31 Jan 2011 10:07:14 +0000 (11:07 +0100)
committerRafael J. Wysocki <rjw@sisk.pl>
Mon, 14 Mar 2011 23:43:14 +0000 (00:43 +0100)
printk()s without a priority level default to KERN_WARNING. To reduce
noise at KERN_WARNING, this patch sets the priority level appriopriately
for unleveled printks()s. This should be useful to folks that look at
dmesg warnings closely.

Changed these messages to pr_info().

Signed-off-by: Mandeep Singh Baines <msb@chromium.org>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
drivers/base/power/trace.c

index 9f4258df4cfdbace7c80d889154738f17c7d8461..c80e138b62fe91d2d14b459ae87288d632cf4d20 100644 (file)
@@ -112,7 +112,7 @@ static unsigned int read_magic_time(void)
        unsigned int val;
 
        get_rtc_time(&time);
-       printk("Time: %2d:%02d:%02d  Date: %02d/%02d/%02d\n",
+       pr_info("Time: %2d:%02d:%02d  Date: %02d/%02d/%02d\n",
                time.tm_hour, time.tm_min, time.tm_sec,
                time.tm_mon + 1, time.tm_mday, time.tm_year % 100);
        val = time.tm_year;                             /* 100 years */
@@ -179,7 +179,7 @@ static int show_file_hash(unsigned int value)
                unsigned int hash = hash_string(lineno, file, FILEHASH);
                if (hash != value)
                        continue;
-               printk("  hash matches %s:%u\n", file, lineno);
+               pr_info("  hash matches %s:%u\n", file, lineno);
                match++;
        }
        return match;
@@ -255,7 +255,7 @@ static int late_resume_init(void)
        val = val / FILEHASH;
        dev = val /* % DEVHASH */;
 
-       printk("  Magic number: %d:%d:%d\n", user, file, dev);
+       pr_info("  Magic number: %d:%d:%d\n", user, file, dev);
        show_file_hash(file);
        show_dev_hash(dev);
        return 0;