Procházet zdrojové kódy

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>
Bhumika Goyal před 8 roky
rodič
revize
8bfa42ab84

+ 1 - 1
arch/powerpc/platforms/powernv/opal-flash.c

@@ -520,7 +520,7 @@ out:
  *   update_flash	: Flash new firmware image
  *   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},
 	.attr = {.name = "image", .mode = 0200},
 	.size = MAX_IMAGE_SIZE,	/* Limit image size */
 	.size = MAX_IMAGE_SIZE,	/* Limit image size */
 	.write = image_data_write,
 	.write = image_data_write,

+ 1 - 1
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;
 	return count;
 }
 }
 
 
-static struct bin_attribute mv64x60_hs_reg_attr = { /* Hotswap register */
+static const struct bin_attribute mv64x60_hs_reg_attr = { /* Hotswap register */
 	.attr = {
 	.attr = {
 		.name = "hs_reg",
 		.name = "hs_reg",
 		.mode = S_IRUGO | S_IWUSR,
 		.mode = S_IRUGO | S_IWUSR,