PCI: hisi: Constify dw_pcie_host_ops structure
authorBhumika Goyal <bhumirks@gmail.com>
Wed, 9 Aug 2017 07:48:48 +0000 (13:18 +0530)
committerBjorn Helgaas <bhelgaas@google.com>
Sat, 19 Aug 2017 21:21:32 +0000 (16:21 -0500)
Make this structure const as it is only stored in the ops field of a
pcie_port structure, which is of type const.  Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/dwc/pcie-hisi.c

index 6631654f95a5c380ad1b3d0f050d8929ece21da5..a20179169e06fe130262448435cc3e3bb098bb6e 100644 (file)
@@ -223,7 +223,7 @@ static int hisi_pcie_link_up(struct dw_pcie *pci)
        return hisi_pcie->soc_ops->hisi_pcie_link_up(hisi_pcie);
 }
 
-static struct dw_pcie_host_ops hisi_pcie_host_ops = {
+static const struct dw_pcie_host_ops hisi_pcie_host_ops = {
        .rd_own_conf = hisi_pcie_cfg_read,
        .wr_own_conf = hisi_pcie_cfg_write,
 };