aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/sysdev
diff options
context:
space:
mode:
authorBhumika Goyal <bhumirks@gmail.com>2017-08-02 23:37:38 +0530
committerMichael Ellerman <mpe@ellerman.id.au>2017-08-17 21:56:26 +1000
commit8bfa42ab84910841336218265fcee94fd1e6285a (patch)
tree4af87eb6ac19f66cf8d05a9e08fd09780f8b78e8 /arch/powerpc/sysdev
parentpowerpc: Remove more redundant VSX save/tests (diff)
downloadlinux-dev-8bfa42ab84910841336218265fcee94fd1e6285a.tar.xz
linux-dev-8bfa42ab84910841336218265fcee94fd1e6285a.zip
powerpc: Add const to bin_attribute structures
Declare bin_attribute structures as const as they are only passed as an argument to the function sysfs_create_bin_file. This argument is of type const, so declare the structure as const. Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/sysdev')
-rw-r--r--arch/powerpc/sysdev/mv64x60_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/mv64x60_pci.c b/arch/powerpc/sysdev/mv64x60_pci.c
index 330d56613c5a..f1fe17265981 100644
--- a/arch/powerpc/sysdev/mv64x60_pci.c
+++ b/arch/powerpc/sysdev/mv64x60_pci.c
@@ -70,7 +70,7 @@ static ssize_t mv64x60_hs_reg_write(struct file *filp, struct kobject *kobj,
return count;
}
-static struct bin_attribute mv64x60_hs_reg_attr = { /* Hotswap register */
+static const struct bin_attribute mv64x60_hs_reg_attr = { /* Hotswap register */
.attr = {
.name = "hs_reg",
.mode = S_IRUGO | S_IWUSR,