diff options
author | Vincent Legoll <[email protected]> | 2017-05-21 11:04:41 +0200 |
---|---|---|
committer | Bjorn Helgaas <[email protected]> | 2017-06-13 11:44:23 -0500 |
commit | 2b2154f9391f3ca03b4f5ba599b2ee7a3a80f781 (patch) | |
tree | a0ed9468a3026b46ae8aaaf75ece9c9a2fb83e8d | |
parent | 2f686f1d9beee135de6d08caea707ec7bfc916d4 (diff) |
x86/PCI: Fix whitespace in set_bios_x() printk
Remove the space from "PCI :" to make the message consistent with other PCI
messages.
Signed-off-by: Vincent Legoll <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
-rw-r--r-- | arch/x86/pci/pcbios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/pci/pcbios.c b/arch/x86/pci/pcbios.c index c1bdb9edcae7..76595408ff53 100644 --- a/arch/x86/pci/pcbios.c +++ b/arch/x86/pci/pcbios.c @@ -46,7 +46,7 @@ static inline void set_bios_x(void) pcibios_enabled = 1; set_memory_x(PAGE_OFFSET + BIOS_BEGIN, (BIOS_END - BIOS_BEGIN) >> PAGE_SHIFT); if (__supported_pte_mask & _PAGE_NX) - printk(KERN_INFO "PCI : PCI BIOS area is rw and x. Use pci=nobios if you want it NX.\n"); + printk(KERN_INFO "PCI: PCI BIOS area is rw and x. Use pci=nobios if you want it NX.\n"); } /* |