Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4113b0e6 authored by Bhumika Goyal's avatar Bhumika Goyal Committed by Bjorn Helgaas
Browse files

x86/pci/intel_mid_pci: Constify intel_mid_pci_ops and make it __initconst



Make this const as it is only used during a copy operation.  This usage is
inside init function and the structure is not referenced after
initialisation, so make it __initconst too.

Signed-off-by: default avatarBhumika Goyal <bhumirks@gmail.com>
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent 69f2dc24
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -279,7 +279,7 @@ static void intel_mid_pci_irq_disable(struct pci_dev *dev)
	}
}

static struct pci_ops intel_mid_pci_ops = {
static const struct pci_ops intel_mid_pci_ops __initconst = {
	.read = pci_read,
	.write = pci_write,
};