summaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/rtlx.c
diff options
context:
space:
mode:
authorRalf Baechle2007-09-12 17:31:12 +0200
committerRalf Baechle2007-09-14 20:08:42 +0200
commite606c109c485c6f8e27dd6ddcd2c0b58c96fc5c9 (patch)
tree2994782f76a976494f8a1385bce259cff907fe3a /arch/mips/kernel/rtlx.c
parentMerge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/usb-2.6 (diff)
downloadkernel-qcow2-linux-e606c109c485c6f8e27dd6ddcd2c0b58c96fc5c9.tar.gz
kernel-qcow2-linux-e606c109c485c6f8e27dd6ddcd2c0b58c96fc5c9.tar.xz
kernel-qcow2-linux-e606c109c485c6f8e27dd6ddcd2c0b58c96fc5c9.zip
[MIPS] rtlx: fix int vs. long bug.
CC arch/mips/kernel/rtlx.o arch/mips/kernel/rtlx.c: In function 'rtlx_init': arch/mips/kernel/rtlx.c:114: warning: format '%x' expects type 'unsigned int', but argument 3 has type 'long unsigned int' Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/rtlx.c')
-rw-r--r--arch/mips/kernel/rtlx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/rtlx.c b/arch/mips/kernel/rtlx.c
index aab89e97abb5..04d8ee787f78 100644
--- a/arch/mips/kernel/rtlx.c
+++ b/arch/mips/kernel/rtlx.c
@@ -111,7 +111,7 @@ static void __used dump_rtlx(void)
static int rtlx_init(struct rtlx_info *rtlxi)
{
if (rtlxi->id != RTLX_ID) {
- printk(KERN_ERR "no valid RTLX id at 0x%p 0x%x\n", rtlxi, rtlxi->id);
+ printk(KERN_ERR "no valid RTLX id at 0x%p 0x%lx\n", rtlxi, rtlxi->id);
return -ENOEXEC;
}