From: Alexander Beregalov <a.beregalov@gmail.com>
To: yhlu.kernel@gmail.com, mingo@elte.hu, linux-kernel@vger.kernel.org
Subject: [PATCH] kernel/resource: fix printk format warning
Date: Sun, 12 Oct 2008 00:58:22 +0400 [thread overview]
Message-ID: <20081011205822.GA25563@orion> (raw)
Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com>
---
kernel/resource.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/resource.c b/kernel/resource.c
index 414d6fc..cfe0933 100644
--- a/kernel/resource.c
+++ b/kernel/resource.c
@@ -550,8 +550,8 @@ static void __init __reserve_region_with_split(struct resource *root,
if (!res) {
printk(KERN_DEBUG " __reserve_region_with_split: (%s) [%llx, %llx], res: (%s) [%llx, %llx]\n",
- conflict->name, conflict->start, conflict->end,
- name, start, end);
+ conflict->name, (unsigned long long)conflict->start, (unsigned long long)conflict->end,
+ name, (unsigned long long)start, (unsigned long long)end);
/* failed, split and try again */
next reply other threads:[~2008-10-11 20:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-10-11 20:58 Alexander Beregalov [this message]
2008-10-11 21:53 ` [PATCH] kernel/resource: fix printk format warning Yinghai Lu
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=20081011205822.GA25563@orion \
--to=a.beregalov@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=yhlu.kernel@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.