mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 16:12:02 +00:00
s390/crypto: sha: Use -ENODEV instead of -EOPNOTSUPP
Let's use the error value that is typically used if HW support is not available when trying to load a module - this is also what systemd's systemd-modules-load.service expects. Reviewed-by: Cornelia Huck <cohuck@redhat.com> Reviewed-by: Harald Freudenberger <freude@linux.ibm.com> Signed-off-by: David Hildenbrand <david@redhat.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
This commit is contained in:
parent
ba6a98fe79
commit
45488c48e4
@ -86,7 +86,7 @@ static struct shash_alg alg = {
|
||||
static int __init sha1_s390_init(void)
|
||||
{
|
||||
if (!cpacf_query_func(CPACF_KIMD, CPACF_KIMD_SHA_1))
|
||||
return -EOPNOTSUPP;
|
||||
return -ENODEV;
|
||||
return crypto_register_shash(&alg);
|
||||
}
|
||||
|
||||
|
@ -117,7 +117,7 @@ static int __init sha256_s390_init(void)
|
||||
int ret;
|
||||
|
||||
if (!cpacf_query_func(CPACF_KIMD, CPACF_KIMD_SHA_256))
|
||||
return -EOPNOTSUPP;
|
||||
return -ENODEV;
|
||||
ret = crypto_register_shash(&sha256_alg);
|
||||
if (ret < 0)
|
||||
goto out;
|
||||
|
@ -127,7 +127,7 @@ static int __init init(void)
|
||||
int ret;
|
||||
|
||||
if (!cpacf_query_func(CPACF_KIMD, CPACF_KIMD_SHA_512))
|
||||
return -EOPNOTSUPP;
|
||||
return -ENODEV;
|
||||
if ((ret = crypto_register_shash(&sha512_alg)) < 0)
|
||||
goto out;
|
||||
if ((ret = crypto_register_shash(&sha384_alg)) < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user