From patchwork Mon May 9 12:51:15 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Prarit Bhargava X-Patchwork-Id: 769052 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.3) with ESMTP id p49CpGxN005681 for ; Mon, 9 May 2011 12:51:17 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752800Ab1EIMvQ (ORCPT ); Mon, 9 May 2011 08:51:16 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37283 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752754Ab1EIMvQ (ORCPT ); Mon, 9 May 2011 08:51:16 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p49CpFYm011522 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 9 May 2011 08:51:15 -0400 Received: from prarit.bos.redhat.com (prarit.bos.redhat.com [10.16.16.23]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p49CpFjr025040; Mon, 9 May 2011 08:51:15 -0400 Date: Mon, 9 May 2011 08:51:15 -0400 From: Prarit Bhargava To: linux-acpi@vger.kernel.org Cc: Prarit Bhargava Message-Id: <20110509125115.24788.66625.sendpatchset@prarit.bos.redhat.com> Subject: [PATCH]: Fix PCIe error handling BIOS control message X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Mon, 09 May 2011 12:51:17 +0000 (UTC) Trivial patch ... We've had a few customers who were concerned about this message. I thought it was fairly obvious, but I guess it isn't... P. ---8<--- The implication of this message is that an error occurred and the BIOS handled it. Reword the message so that it is clear that the BIOS is taking control of the handling of PCIe errors. Signed-off-by: Prarit Bhargava --- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c index f911a2f..ea11224 100644 --- a/drivers/acpi/pci_root.c +++ b/drivers/acpi/pci_root.c @@ -582,7 +582,7 @@ static int __devinit acpi_pci_root_add(struct acpi_device *device) if (pci_aer_available()) { if (aer_acpi_firmware_first()) dev_dbg(root->bus->bridge, - "PCIe errors handled by BIOS.\n"); + "BIOS will handle PCIe errors.\n"); else flags |= OSC_PCI_EXPRESS_AER_CONTROL; }