public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* x86-64 mmconfig missing printk levels.
@ 2006-10-11 18:21 Dave Jones
  2006-10-16 10:38 ` Andi Kleen
  0 siblings, 1 reply; 2+ messages in thread
From: Dave Jones @ 2006-10-11 18:21 UTC (permalink / raw)
  To: Linux Kernel; +Cc: ak

Trivial bits..

Signed-off-by: Dave Jones <davej@redhat.com>

--- local-git/arch/x86_64/pci/mmconfig.c~	2006-10-11 14:18:57.000000000 -0400
+++ local-git/arch/x86_64/pci/mmconfig.c	2006-10-11 14:19:28.000000000 -0400
@@ -220,7 +220,7 @@ void __init pci_mmcfg_init(int type)
 
 	pci_mmcfg_virt = kmalloc(sizeof(*pci_mmcfg_virt) * pci_mmcfg_config_num, GFP_KERNEL);
 	if (pci_mmcfg_virt == NULL) {
-		printk("PCI: Can not allocate memory for mmconfig structures\n");
+		printk(KERN_ERR "PCI: Can not allocate memory for mmconfig structures\n");
 		return;
 	}
 	for (i = 0; i < pci_mmcfg_config_num; ++i) {
@@ -228,7 +228,7 @@ void __init pci_mmcfg_init(int type)
 		pci_mmcfg_virt[i].virt = ioremap_nocache(pci_mmcfg_config[i].base_address,
 							 MMCONFIG_APER_MAX);
 		if (!pci_mmcfg_virt[i].virt) {
-			printk("PCI: Cannot map mmconfig aperture for segment %d\n",
+			printk(KERN_ERR "PCI: Cannot map mmconfig aperture for segment %d\n",
 			       pci_mmcfg_config[i].pci_segment_group_number);
 			return;
 		}

-- 
http://www.codemonkey.org.uk

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: x86-64 mmconfig missing printk levels.
  2006-10-11 18:21 x86-64 mmconfig missing printk levels Dave Jones
@ 2006-10-16 10:38 ` Andi Kleen
  0 siblings, 0 replies; 2+ messages in thread
From: Andi Kleen @ 2006-10-16 10:38 UTC (permalink / raw)
  To: Dave Jones; +Cc: Linux Kernel, gregkh

On Wednesday 11 October 2006 20:21, Dave Jones wrote:
> Trivial bits..

Would be more for Greg.

-Andi

> 
> Signed-off-by: Dave Jones <davej@redhat.com>
> 
> --- local-git/arch/x86_64/pci/mmconfig.c~	2006-10-11 14:18:57.000000000 -0400
> +++ local-git/arch/x86_64/pci/mmconfig.c	2006-10-11 14:19:28.000000000 -0400
> @@ -220,7 +220,7 @@ void __init pci_mmcfg_init(int type)
>  
>  	pci_mmcfg_virt = kmalloc(sizeof(*pci_mmcfg_virt) * pci_mmcfg_config_num, GFP_KERNEL);
>  	if (pci_mmcfg_virt == NULL) {
> -		printk("PCI: Can not allocate memory for mmconfig structures\n");
> +		printk(KERN_ERR "PCI: Can not allocate memory for mmconfig structures\n");
>  		return;
>  	}
>  	for (i = 0; i < pci_mmcfg_config_num; ++i) {
> @@ -228,7 +228,7 @@ void __init pci_mmcfg_init(int type)
>  		pci_mmcfg_virt[i].virt = ioremap_nocache(pci_mmcfg_config[i].base_address,
>  							 MMCONFIG_APER_MAX);
>  		if (!pci_mmcfg_virt[i].virt) {
> -			printk("PCI: Cannot map mmconfig aperture for segment %d\n",
> +			printk(KERN_ERR "PCI: Cannot map mmconfig aperture for segment %d\n",
>  			       pci_mmcfg_config[i].pci_segment_group_number);
>  			return;
>  		}
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-10-16 10:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-11 18:21 x86-64 mmconfig missing printk levels Dave Jones
2006-10-16 10:38 ` Andi Kleen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox