summaryrefslogtreecommitdiffstats
path: root/arch/x86/pci/numaq_32.c
diff options
context:
space:
mode:
authorJan Beulich2011-09-15 09:58:51 +0200
committerJesse Barnes2011-10-14 18:05:28 +0200
commit72da0b07b1b497927758a2102b856ce41e4ba81e (patch)
treead8e8f895c60fb2dfe0d5922e7c9ca9e8b75e6fe /arch/x86/pci/numaq_32.c
parentPCI: Add quirk for known incorrect MPSS (diff)
downloadkernel-qcow2-linux-72da0b07b1b497927758a2102b856ce41e4ba81e.tar.gz
kernel-qcow2-linux-72da0b07b1b497927758a2102b856ce41e4ba81e.tar.xz
kernel-qcow2-linux-72da0b07b1b497927758a2102b856ce41e4ba81e.zip
x86: constify PCI raw ops structures
As with any other such change, the goal is to prevent inadvertent writes to these structures (assuming DEBUG_RODATA is enabled), and to separate data (possibly frequently) written to from such never getting modified. Reviewed-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Jan Beulich <jbeulich@novell.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'arch/x86/pci/numaq_32.c')
-rw-r--r--arch/x86/pci/numaq_32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/pci/numaq_32.c b/arch/x86/pci/numaq_32.c
index 512a88c41501..51abf02f9226 100644
--- a/arch/x86/pci/numaq_32.c
+++ b/arch/x86/pci/numaq_32.c
@@ -110,7 +110,7 @@ static int pci_conf1_mq_write(unsigned int seg, unsigned int bus,
#undef PCI_CONF1_MQ_ADDRESS
-static struct pci_raw_ops pci_direct_conf1_mq = {
+static const struct pci_raw_ops pci_direct_conf1_mq = {
.read = pci_conf1_mq_read,
.write = pci_conf1_mq_write
};