summaryrefslogtreecommitdiffstats
path: root/drivers/pci/pci-sysfs.c
diff options
context:
space:
mode:
authorBhumika Goyal <bhumirks@gmail.com>2017-08-02 20:57:27 +0530
committerBjorn Helgaas <bhelgaas@google.com>2017-08-10 15:21:42 -0500
commit8bdc50ac56ab97e7585ee928a1017284afeee17a (patch)
tree71f0d08f72670853f81f2588537752abaf2a2d41 /drivers/pci/pci-sysfs.c
parent8394264da2bc04a75d7d02071ae2ba6adbd46361 (diff)
downloadop-kernel-dev-8bdc50ac56ab97e7585ee928a1017284afeee17a.zip
op-kernel-dev-8bdc50ac56ab97e7585ee928a1017284afeee17a.tar.gz
PCI: Constify bin_attribute structures
Add const to bin_attribute structures as they are only passed to the functions sysfs_{remove/create}_bin_file. The corresponding arguments are of type const, so declare the structures to be const. Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/pci-sysfs.c')
-rw-r--r--drivers/pci/pci-sysfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c
index 2eed0dc..93e7b97 100644
--- a/drivers/pci/pci-sysfs.c
+++ b/drivers/pci/pci-sysfs.c
@@ -1431,7 +1431,7 @@ static ssize_t pci_read_rom(struct file *filp, struct kobject *kobj,
return count;
}
-static struct bin_attribute pci_config_attr = {
+static const struct bin_attribute pci_config_attr = {
.attr = {
.name = "config",
.mode = S_IRUGO | S_IWUSR,
@@ -1441,7 +1441,7 @@ static struct bin_attribute pci_config_attr = {
.write = pci_write_config,
};
-static struct bin_attribute pcie_config_attr = {
+static const struct bin_attribute pcie_config_attr = {
.attr = {
.name = "config",
.mode = S_IRUGO | S_IWUSR,
OpenPOWER on IntegriCloud