mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 01:24:12 +08:00
crypto: sa2ul - Set the supported_algos bits individually
Setting these individually gives a better picture of supported functions at a glance. Plus if the list changes an unwanted one will not accidentally get set with GENMASK. Signed-off-by: Andrew Davis <afd@ti.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
6c14a9650b
commit
a65c9a2a0b
@ -2361,7 +2361,15 @@ static int sa_link_child(struct device *dev, void *data)
|
||||
static struct sa_match_data am654_match_data = {
|
||||
.priv = 1,
|
||||
.priv_id = 1,
|
||||
.supported_algos = GENMASK(SA_ALG_AUTHENC_SHA256_AES, 0),
|
||||
.supported_algos = BIT(SA_ALG_CBC_AES) |
|
||||
BIT(SA_ALG_EBC_AES) |
|
||||
BIT(SA_ALG_CBC_DES3) |
|
||||
BIT(SA_ALG_ECB_DES3) |
|
||||
BIT(SA_ALG_SHA1) |
|
||||
BIT(SA_ALG_SHA256) |
|
||||
BIT(SA_ALG_SHA512) |
|
||||
BIT(SA_ALG_AUTHENC_SHA1_AES) |
|
||||
BIT(SA_ALG_AUTHENC_SHA256_AES),
|
||||
};
|
||||
|
||||
static struct sa_match_data am64_match_data = {
|
||||
|
Loading…
Reference in New Issue
Block a user