From patchwork Fri Oct 19 01:21:51 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joe Perches X-Patchwork-Id: 1614321 Return-Path: X-Original-To: patchwork-linux-acpi@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 6DD0ADFFED for ; Fri, 19 Oct 2012 01:21:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751438Ab2JSBVx (ORCPT ); Thu, 18 Oct 2012 21:21:53 -0400 Received: from perches-mx.perches.com ([206.117.179.246]:46082 "EHLO labridge.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751026Ab2JSBVx (ORCPT ); Thu, 18 Oct 2012 21:21:53 -0400 Received: from [173.51.221.202] (account joe@perches.com HELO [192.168.1.167]) by labridge.com (CommuniGate Pro SMTP 5.0.14) with ESMTPA id 19746499; Thu, 18 Oct 2012 18:21:52 -0700 Message-ID: <1350609711.22385.21.camel@joe-AO722> Subject: Re: [PATCH] Fix printing when no interrupt is allocated From: Joe Perches To: Daniel J Blueman Cc: Len Brown , linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org Date: Thu, 18 Oct 2012 18:21:51 -0700 In-Reply-To: <1350606821-29813-1-git-send-email-daniel@numascale-asia.com> References: <1350606821-29813-1-git-send-email-daniel@numascale-asia.com> X-Mailer: Evolution 3.6.0-0ubuntu3 Mime-Version: 1.0 Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org On Fri, 2012-10-19 at 08:33 +0800, Daniel J Blueman wrote: > Previously a new line is implicitly added in the no GSI case: > > [ 7.185182] pci 0001:00:12.0: can't derive routing for PCI INT A > [ 7.191352] pci 0001:00:12.0: PCI INT A: no GSI > [ 7.195956] - using ISA IRQ 10 > > The code thus prints a blank line where no legacy IRQ is available: > > [ 1.650124] pci 0000:00:14.0: can't derive routing for PCI INT A > [ 1.650126] pci 0000:00:14.0: PCI INT A: no GSI > [ 1.650126] > [ 1.650180] pci 0000:00:14.0: can't derive routing for PCI INT A > > Fix this by making the newline explicit and removing the superfluous > one. I think this is a better fix: drivers/acpi/pci_irq.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) --- 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_irq.c b/drivers/acpi/pci_irq.c index 0eefa12..9b98f9f 100644 --- a/drivers/acpi/pci_irq.c +++ b/drivers/acpi/pci_irq.c @@ -459,19 +459,20 @@ int acpi_pci_irq_enable(struct pci_dev *dev) */ if (gsi < 0) { u32 dev_gsi; - dev_warn(&dev->dev, "PCI INT %c: no GSI", pin_name(pin)); /* Interrupt Line values above 0xF are forbidden */ if (dev->irq > 0 && (dev->irq <= 0xF) && (acpi_isa_irq_to_gsi(dev->irq, &dev_gsi) == 0)) { - printk(" - using ISA IRQ %d\n", dev->irq); + dev_warn(&dev->dev, + "PCI INT %c: no GSI - using ISA IRQ %d\n", + pin_name(pin), dev->irq); acpi_register_gsi(&dev->dev, dev_gsi, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW); - return 0; } else { - printk("\n"); - return 0; + dev_warn(&dev->dev, "PCI INT %c: no GSI\n", + pin_name(pin)); } + return 0; } rc = acpi_register_gsi(&dev->dev, gsi, triggering, polarity);