diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2005-07-27 18:32:00 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-08-12 01:10:29 -0400 |
commit | 1dadb3dadfaa01890fc10df03f0dd03a9f8774b2 (patch) | |
tree | d61020f32e56881a5f9c6256dcf48b383c77ed5d /drivers | |
parent | 6c89cce75c6f93088a5a2a25bb9674a9194592cc (diff) |
[ACPI] don't complain about PCI root bridges without _SEG
There are lots of single-PCI-segment machines that don't
supply _SEG for the root bridges. The PCI root bridge driver
silently assumes the segment to be zero in this case,
so glue.c shouldn't complain either.
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/acpi/glue.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/acpi/glue.c b/drivers/acpi/glue.c index 1943461489c..e36c5da2b31 100644 --- a/drivers/acpi/glue.c +++ b/drivers/acpi/glue.c @@ -170,9 +170,6 @@ find_pci_rootbridge(acpi_handle handle, u32 lvl, void *context, void **rv) status = acpi_evaluate_integer(handle, METHOD_NAME__SEG, NULL, &seg); if (status == AE_NOT_FOUND) { /* Assume seg = 0 */ - printk(KERN_INFO PREFIX - "Assume root bridge [%s] segment is 0\n", - (char *)buffer.pointer); status = AE_OK; seg = 0; } |