aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/crypto
diff options
context:
space:
mode:
authorRikard Falkeborn <rikard.falkeborn@gmail.com>2022-02-10 21:28:04 +0100
committerHerbert Xu <herbert@gondor.apana.org.au>2022-02-18 16:21:09 +1100
commit83b5a23b6604028ef635a72465b23a85a425b695 (patch)
tree26b02966dc65e942d87b39115e63dad571809f28 /drivers/crypto
parentcrypto: omap-aes - Constify static attribute_group (diff)
downloadwireguard-linux-83b5a23b6604028ef635a72465b23a85a425b695.tar.xz
wireguard-linux-83b5a23b6604028ef635a72465b23a85a425b695.zip
crypto: omap-sham - Constify static attribute_group
The only usage of omap_sham_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>
Diffstat (limited to 'drivers/crypto')
-rw-r--r--drivers/crypto/omap-sham.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/omap-sham.c b/drivers/crypto/omap-sham.c
index f6bf53c00b61..4b37dc69a50c 100644
--- a/drivers/crypto/omap-sham.c
+++ b/drivers/crypto/omap-sham.c
@@ -2045,7 +2045,7 @@ static struct attribute *omap_sham_attrs[] = {
NULL,
};
-static struct attribute_group omap_sham_attr_group = {
+static const struct attribute_group omap_sham_attr_group = {
.attrs = omap_sham_attrs,
};