Skip to content

Commit

Permalink
[PATCH] ppc64: quieten RTAS printks
Browse files Browse the repository at this point in the history
Some rtasd printks were too loud. They would appear on a quiet boot
even though they were only informational.

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
  • Loading branch information
Anton Blanchard authored and Paul Mackerras committed Jun 20, 2005
1 parent 8b22c24 commit ad21798
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/ppc64/kernel/rtasd.c
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ static int rtasd(void *unused)
goto error;
}

printk(KERN_ERR "RTAS daemon started\n");
printk(KERN_INFO "RTAS daemon started\n");

DEBUG("will sleep for %d jiffies\n", (HZ*60/rtas_event_scan_rate) / 2);

Expand Down Expand Up @@ -485,7 +485,7 @@ static int __init rtas_init(void)
/* No RTAS, only warn if we are on a pSeries box */
if (rtas_token("event-scan") == RTAS_UNKNOWN_SERVICE) {
if (systemcfg->platform & PLATFORM_PSERIES)
printk(KERN_ERR "rtasd: no event-scan on system\n");
printk(KERN_INFO "rtasd: no event-scan on system\n");
return 1;
}

Expand Down

0 comments on commit ad21798

Please sign in to comment.