From: t_jeang Date: Tue, 6 Jan 2009 12:06:03 +0000 (+0000) Subject: imported patch quiet-intel-rng X-Git-Tag: quiet-fscache-messages X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=bc67617c259cbeb6328eb7027223b37c25f71e00;p=xenclient%2Fkernel.git imported patch quiet-intel-rng --- diff --git a/drivers/char/hw_random/intel-rng.c b/drivers/char/hw_random/intel-rng.c index 257ef751..b30dc7f4 100644 --- a/drivers/char/hw_random/intel-rng.c +++ b/drivers/char/hw_random/intel-rng.c @@ -226,7 +226,7 @@ static int intel_rng_init(struct hwrng *rng) if ((hw_status & INTEL_RNG_ENABLED) == 0) hw_status = hwstatus_set(mem, hw_status | INTEL_RNG_ENABLED); if ((hw_status & INTEL_RNG_ENABLED) == 0) { - printk(KERN_ERR PFX "cannot enable RNG, aborting\n"); + printk(KERN_INFO PFX "cannot enable RNG, aborting\n"); goto out; } err = 0; @@ -311,7 +311,7 @@ static int __init intel_rng_hw_init(void *_intel_rng_hw) if (mfc != INTEL_FWH_MANUFACTURER_CODE || (dvc != INTEL_FWH_DEVICE_CODE_8M && dvc != INTEL_FWH_DEVICE_CODE_4M)) { - printk(KERN_ERR PFX "FWH not detected\n"); + printk(KERN_INFO PFX "FWH not detected\n"); return -ENODEV; }