Forráskód Böngészése

qlcnic: add const to bin_attribute structure

Add const to bin_attribute structure as it is only passed to the
functions sysfs_{remove/create}_bin_file. The corresponding
arguments are of type const, so declare the structure to be const.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Bhumika Goyal 8 éve
szülő
commit
2d29b39739
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.c

+ 1 - 1
drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.c

@@ -1248,7 +1248,7 @@ static const struct bin_attribute bin_attr_pm_config = {
 	.write = qlcnic_sysfs_write_pm_config,
 	.write = qlcnic_sysfs_write_pm_config,
 };
 };
 
 
-static struct bin_attribute bin_attr_flash = {
+static const struct bin_attribute bin_attr_flash = {
 	.attr = {.name = "flash", .mode = (S_IRUGO | S_IWUSR)},
 	.attr = {.name = "flash", .mode = (S_IRUGO | S_IWUSR)},
 	.size = 0,
 	.size = 0,
 	.read = qlcnic_83xx_sysfs_flash_read_handler,
 	.read = qlcnic_83xx_sysfs_flash_read_handler,