diff options
author | Anton Blanchard <anton@samba.org> | 2012-07-22 20:42:32 +0000 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2012-07-27 11:42:33 +1000 |
commit | 0e3849836bb17cd95729587c4a834f2ebf4f9f42 (patch) | |
tree | d25f7c954c29ae7d80d89ebb8a5b65d65ee62f6c /arch/powerpc | |
parent | fd297b3a7302ab866306f53c1fd1e97b083fe83e (diff) | |
download | blackbird-obmc-linux-0e3849836bb17cd95729587c4a834f2ebf4f9f42.tar.gz blackbird-obmc-linux-0e3849836bb17cd95729587c4a834f2ebf4f9f42.zip |
powerpc: Lack of firmware flash support is not an error
Reduce the severity of the warning given when firmware flash is
not supported. Not all platforms have it.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/kernel/rtas_flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/rtas_flash.c b/arch/powerpc/kernel/rtas_flash.c index 4174b4b23246..2c0ee6405633 100644 --- a/arch/powerpc/kernel/rtas_flash.c +++ b/arch/powerpc/kernel/rtas_flash.c @@ -709,7 +709,7 @@ static int __init rtas_flash_init(void) if (rtas_token("ibm,update-flash-64-and-reboot") == RTAS_UNKNOWN_SERVICE) { - printk(KERN_ERR "rtas_flash: no firmware flash support\n"); + pr_info("rtas_flash: no firmware flash support\n"); return 1; } |