diff options
author | Daniel J Blueman <daniel@numascale.com> | 2014-11-04 16:29:43 +0800 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2014-11-04 18:17:27 +0100 |
commit | b980dcf25d0ee1f0f8c7b6afc0e715a2f5da5ec4 (patch) | |
tree | f58ab7230efae35fadbf962abf8319c35ed2a024 /arch/x86/pci/numachip.c | |
parent | 25e5a76bae106e1673887db09e22b19cb1a86c45 (diff) | |
download | talos-op-linux-b980dcf25d0ee1f0f8c7b6afc0e715a2f5da5ec4.tar.gz talos-op-linux-b980dcf25d0ee1f0f8c7b6afc0e715a2f5da5ec4.zip |
x86: numachip: APIC driver cleanups
Drop printing that serves no purpose, as it's printing fixed or known
values, and mark constant structure appropriately.
Signed-off-by: Daniel J Blueman <daniel@numascale.com>
Cc: Steffen Persvold <sp@numascale.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Link: http://lkml.kernel.org/r/1415089784-28779-3-git-send-email-daniel@numascale.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/pci/numachip.c')
-rw-r--r-- | arch/x86/pci/numachip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/pci/numachip.c b/arch/x86/pci/numachip.c index 7307d9d12d15..2e565e65c893 100644 --- a/arch/x86/pci/numachip.c +++ b/arch/x86/pci/numachip.c @@ -103,7 +103,7 @@ static int pci_mmcfg_write_numachip(unsigned int seg, unsigned int bus, return 0; } -const struct pci_raw_ops pci_mmcfg_numachip = { +static const struct pci_raw_ops pci_mmcfg_numachip = { .read = pci_mmcfg_read_numachip, .write = pci_mmcfg_write_numachip, }; |