Staging: unisys: visorbus: Make a read-only structure
authorMihaela Muraru <mihaela.muraru21@gmail.com>
Sat, 15 Oct 2016 22:41:14 +0000 (01:41 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 17 Oct 2016 08:27:55 +0000 (10:27 +0200)
This patch add const qualifier at the declaration of the structure.
The structure become a read-only data, this increase the security.

Signed-off-by: Mihaela Muraru <mihaela.muraru21@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/visorbus/visorchipset.c

index 5987149..8e67c17 100644 (file)
@@ -1317,7 +1317,7 @@ static struct attribute *visorchipset_install_attrs[] = {
        NULL
 };
 
-static struct attribute_group visorchipset_install_group = {
+static const struct attribute_group visorchipset_install_group = {
        .name = "install",
        .attrs = visorchipset_install_attrs
 };