Commit b43e726b authored by Jeremy Katz's avatar Jeremy Katz Committed by Herbert Xu

crypto: padlock - Make module loading quieter when hardware isn't available

When loading aes or sha256 via the module aliases, the padlock modules
also try to get loaded.  Make the error message for them not being
present only be a NOTICE rather than an ERROR so that use of 'quiet'
will suppress the messages
Signed-off-by: default avatarJeremy Katz <katzj@redhat.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 4b22f0dd
...@@ -385,12 +385,12 @@ static int __init padlock_init(void) ...@@ -385,12 +385,12 @@ static int __init padlock_init(void)
int ret; int ret;
if (!cpu_has_xcrypt) { if (!cpu_has_xcrypt) {
printk(KERN_ERR PFX "VIA PadLock not detected.\n"); printk(KERN_NOTICE PFX "VIA PadLock not detected.\n");
return -ENODEV; return -ENODEV;
} }
if (!cpu_has_xcrypt_enabled) { if (!cpu_has_xcrypt_enabled) {
printk(KERN_ERR PFX "VIA PadLock detected, but not enabled. Hmm, strange...\n"); printk(KERN_NOTICE PFX "VIA PadLock detected, but not enabled. Hmm, strange...\n");
return -ENODEV; return -ENODEV;
} }
......
...@@ -254,12 +254,12 @@ static int __init padlock_init(void) ...@@ -254,12 +254,12 @@ static int __init padlock_init(void)
int rc = -ENODEV; int rc = -ENODEV;
if (!cpu_has_phe) { if (!cpu_has_phe) {
printk(KERN_ERR PFX "VIA PadLock Hash Engine not detected.\n"); printk(KERN_NOTICE PFX "VIA PadLock Hash Engine not detected.\n");
return -ENODEV; return -ENODEV;
} }
if (!cpu_has_phe_enabled) { if (!cpu_has_phe_enabled) {
printk(KERN_ERR PFX "VIA PadLock detected, but not enabled. Hmm, strange...\n"); printk(KERN_NOTICE PFX "VIA PadLock detected, but not enabled. Hmm, strange...\n");
return -ENODEV; return -ENODEV;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment