From: Liu Jiang <liuj97@gmail.com>
To: Kevin Hao <haokexin@gmail.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>, linux-pci@vger.kernel.org
Subject: Re: [PATCH 1/3] PCI: add 0x prefix when printing the BAR registers position in __pci_read_base
Date: Sun, 26 May 2013 00:30:14 +0800 [thread overview]
Message-ID: <51A0E716.9050405@gmail.com> (raw)
In-Reply-To: <1369481787-21500-2-git-send-email-haokexin@gmail.com>
On 05/25/2013 07:36 PM, Kevin Hao wrote:
> We print the BAR registers position in hexadecimal format, so it
> is more readable if 0x prefix is added. Also fix the following
> checkpatch warning:
> WARNING: Prefer dev_dbg(... to dev_printk(KERN_DEBUG, ...
>
> Signed-off-by: Kevin Hao <haokexin@gmail.com>
> ---
> v2: A new patch introduced in v2.
>
> drivers/pci/probe.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
> index 70f10fa..2505d5e 100644
> --- a/drivers/pci/probe.c
> +++ b/drivers/pci/probe.c
> @@ -278,9 +278,9 @@ out:
> pci_write_config_word(dev, PCI_COMMAND, orig_cmd);
>
> if (bar_too_big)
> - dev_err(&dev->dev, "reg %x: can't handle 64-bit BAR\n", pos);
> + dev_err(&dev->dev, "reg 0x%x: can't handle 64-bit BAR\n", pos);
> if (res->flags && !bar_disabled)
> - dev_printk(KERN_DEBUG, &dev->dev, "reg %x: %pR\n", pos, res);
> + dev_dbg(&dev->dev, "reg 0x%x: %pR\n", pos, res);
Hi Kevin,
dev_printk(KERN_DEBUG) -> dev_dbg() is not an equivalent change, it
depends
on CONFIG_DEBUG and CONFIG_DYNAMIC_DEBUG.
Regards!
Gerry
>
> return (res->flags & IORESOURCE_MEM_64) ? 1 : 0;
> }
next prev parent reply other threads:[~2013-05-25 16:30 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-25 11:36 [PATCH v2 0/3] fix the pci device malfunction if a wrong bus address is assigned by firmware Kevin Hao
2013-05-25 11:36 ` [PATCH 1/3] PCI: add 0x prefix when printing the BAR registers position in __pci_read_base Kevin Hao
2013-05-25 16:30 ` Liu Jiang [this message]
2013-05-25 23:47 ` Bjorn Helgaas
2013-05-26 0:16 ` Kevin Hao
2013-05-25 11:36 ` [PATCH 2/3] PCI: converge the unnecessary sprinkling of pcibios_bus_to_resource " Kevin Hao
2013-05-25 11:36 ` [PATCH 3/3] PCI: unset the resource if a wrong bus address is assigned by firmware Kevin Hao
2013-05-25 23:46 ` [PATCH v2 0/3] fix the pci device malfunction " Bjorn Helgaas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=51A0E716.9050405@gmail.com \
--to=liuj97@gmail.com \
--cc=bhelgaas@google.com \
--cc=haokexin@gmail.com \
--cc=linux-pci@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).