crypto: omap-aes - Constify static attribute_group

The only usage of omap_aes_attr_group is to pass its address to
sysfs_{create,remove}_group(), which takes pointers to const struct
attribute_group. Make it const to allow the compiler to put it in
read-only memory.

Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Rikard Falkeborn 2022-02-10 21:28:03 +01:00 committed by Herbert Xu
parent e5745f3411
commit 882f6c602b

View file

@ -1093,7 +1093,7 @@ static struct attribute *omap_aes_attrs[] = {
NULL,
};
static struct attribute_group omap_aes_attr_group = {
static const struct attribute_group omap_aes_attr_group = {
.attrs = omap_aes_attrs,
};