From a9c1670c80b8f19a015ae030cc7838d88133c482 Mon Sep 17 00:00:00 2001 From: Muli Ben-Yehuda Date: Thu, 11 Jan 2007 01:52:44 +0100 Subject: [PATCH] --- yaml --- r: 45463 b: refs/heads/master c: b92cc55923898ab5e8a78939be9734ab9e1c8f49 h: refs/heads/master i: 45461: 435e0146cf6bac4a475c25ea377b0f8dce24edee 45459: 76f123561256e5987d48ea319686d454d45f2f61 45455: 4abdf60abaca9aebdcb519cbdfc9ce97d3876b87 v: v3 --- [refs] | 2 +- trunk/arch/x86_64/kernel/pci-calgary.c | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index 33a2d0c2066c..6c59d54d3e94 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: ed5316d4457b35c7b4942af028d6b878174264f7 +refs/heads/master: b92cc55923898ab5e8a78939be9734ab9e1c8f49 diff --git a/trunk/arch/x86_64/kernel/pci-calgary.c b/trunk/arch/x86_64/kernel/pci-calgary.c index 87d90cb68a74..3d65b1d4c2b3 100644 --- a/trunk/arch/x86_64/kernel/pci-calgary.c +++ b/trunk/arch/x86_64/kernel/pci-calgary.c @@ -1068,6 +1068,8 @@ void __init detect_calgary(void) if (!early_pci_allowed()) return; + printk(KERN_DEBUG "Calgary: detecting Calgary via BIOS EBDA area\n"); + ptr = (unsigned long)phys_to_virt(get_bios_ebda()); rio_table_hdr = NULL; @@ -1088,14 +1090,14 @@ void __init detect_calgary(void) offset = *((unsigned short *)(ptr + offset)); } if (!rio_table_hdr) { - printk(KERN_ERR "Calgary: Unable to locate " - "Rio Grande Table in EBDA - bailing!\n"); + printk(KERN_DEBUG "Calgary: Unable to locate Rio Grande table " + "in EBDA - bailing!\n"); return; } ret = build_detail_arrays(); if (ret) { - printk(KERN_ERR "Calgary: build_detail_arrays ret %d\n", ret); + printk(KERN_DEBUG "Calgary: build_detail_arrays ret %d\n", ret); return; } @@ -1128,6 +1130,9 @@ void __init detect_calgary(void) } } + printk(KERN_DEBUG "Calgary: finished detection, Calgary %s\n", + calgary_found ? "found" : "not found"); + if (calgary_found) { iommu_detected = 1; calgary_detected = 1;