summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms
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/platforms
parent96c79b6bd74039e8a799e4aa2d331cbd478ab5a1 (diff)
downloadop-kernel-dev-8bfa42ab84910841336218265fcee94fd1e6285a.zip
op-kernel-dev-8bfa42ab84910841336218265fcee94fd1e6285a.tar.gz
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/platforms')
-rw-r--r--arch/powerpc/platforms/powernv/opal-flash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/powernv/opal-flash.c b/arch/powerpc/platforms/powernv/opal-flash.c
index 4ec6219..2fa3ac8 100644
--- a/arch/powerpc/platforms/powernv/opal-flash.c
+++ b/arch/powerpc/platforms/powernv/opal-flash.c
@@ -520,7 +520,7 @@ out:
* update_flash : Flash new firmware image
*
*/
-static struct bin_attribute image_data_attr = {
+static const struct bin_attribute image_data_attr = {
.attr = {.name = "image", .mode = 0200},
.size = MAX_IMAGE_SIZE, /* Limit image size */
.write = image_data_write,
OpenPOWER on IntegriCloud