Commit cf33ce15 authored by Randy Dunlap's avatar Randy Dunlap Committed by David S. Miller

net: fix hydra printk format warning

m68k:
drivers/net/hydra.c:178: warning: format '%08lx' expects type 'long unsigned int', but argument 3 has type 'resource_size_t'
Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5dbc4650
...@@ -173,9 +173,9 @@ static int __devinit hydra_init(struct zorro_dev *z) ...@@ -173,9 +173,9 @@ static int __devinit hydra_init(struct zorro_dev *z)
zorro_set_drvdata(z, dev); zorro_set_drvdata(z, dev);
printk(KERN_INFO "%s: Hydra at 0x%08lx, address " printk(KERN_INFO "%s: Hydra at 0x%08llx, address "
"%pM (hydra.c " HYDRA_VERSION ")\n", "%pM (hydra.c " HYDRA_VERSION ")\n",
dev->name, z->resource.start, dev->dev_addr); dev->name, (unsigned long long)z->resource.start, dev->dev_addr);
return 0; return 0;
} }
......
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