| To: | Jiri Kosina <trivial@kernel.org> |
|---|---|
| Subject: | [PATCH 02/14] arch/mips: Use printf extension %pR for struct resource |
| From: | Joe Perches <joe@perches.com> |
| Date: | Fri, 12 Nov 2010 13:37:52 -0800 |
| Cc: | Ralf Baechle <ralf@linux-mips.org>, linux-mips@linux-mips.org, linux-kernel@vger.kernel.org |
| In-reply-to: | <cover.1289597644.git.joe@perches.com> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <cover.1289597644.git.joe@perches.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
Using %pR standardizes the struct resource output.
Signed-off-by: Joe Perches <joe@perches.com>
---
arch/mips/txx9/generic/pci.c | 7 ++-----
1 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/arch/mips/txx9/generic/pci.c b/arch/mips/txx9/generic/pci.c
index 9a0be81..c609e7b 100644
--- a/arch/mips/txx9/generic/pci.c
+++ b/arch/mips/txx9/generic/pci.c
@@ -213,11 +213,8 @@ txx9_alloc_pci_controller(struct pci_controller *pcic,
pcic->mem_offset = 0; /* busaddr == physaddr */
- printk(KERN_INFO "PCI: IO 0x%08llx-0x%08llx MEM 0x%08llx-0x%08llx\n",
- (unsigned long long)pcic->mem_resource[1].start,
- (unsigned long long)pcic->mem_resource[1].end,
- (unsigned long long)pcic->mem_resource[0].start,
- (unsigned long long)pcic->mem_resource[0].end);
+ printk(KERN_INFO "PCI: IO %pR MEM %pR\n",
+ &pcic->mem_resource[1], &pcic->mem_resource[0]);
/* register_pci_controller() will request MEM resource */
release_resource(&pcic->mem_resource[0]);
--
1.7.3.1.g432b3.dirty
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Why do we have ebase located at some high memory address when we use Vectored Interrupts?, Ardelean, Andrei |
|---|---|
| Next by Date: | [PATCH 00/14] Use printf extension %pR for struct resource, Joe Perches |
| Previous by Thread: | [PATCH 00/14] Use printf extension %pR for struct resource, Joe Perches |
| Next by Thread: | Re: [PATCH 02/14] arch/mips: Use printf extension %pR for struct resource, Ralf Baechle |
| Indexes: | [Date] [Thread] [Top] [All Lists] |