Commit fcf7770a authored by Andrew Morton's avatar Andrew Morton Committed by Stefan Richter

firewire: printk warning fix

drivers/firewire/fw-ohci.c: In function 'ar_context_init':
drivers/firewire/fw-ohci.c:288: warning: format '%08x' expects type 'unsigned int', but argument 2 has type 'dma_addr_t'
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarKristian Høgsberg <krh@redhat.com>
Signed-off-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
parent 9ba136d0
...@@ -285,8 +285,8 @@ ar_context_init(struct ar_context *ctx, struct fw_ohci *ohci, u32 control_set) ...@@ -285,8 +285,8 @@ ar_context_init(struct ar_context *ctx, struct fw_ohci *ohci, u32 control_set)
return -ENOMEM; return -ENOMEM;
if (ctx->descriptor_bus & 0xf) if (ctx->descriptor_bus & 0xf)
fw_notify("descriptor not 16-byte aligned: 0x%08x\n", fw_notify("descriptor not 16-byte aligned: 0x%08lx\n",
ctx->descriptor_bus); (unsigned long)ctx->descriptor_bus);
ctx->buffer_bus = ctx->buffer_bus =
dma_map_single(ohci->card.device, ctx->buffer, dma_map_single(ohci->card.device, ctx->buffer,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment