aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/cassini.c
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-01-17 15:14:49 -0800
committerDavid S. Miller <davem@davemloft.net>2006-01-17 15:14:49 -0800
commit64af4c13622511257daba762b32d9d20f2d0c4b5 (patch)
treeb305487a9130b824f71418303178bd0b19791048 /drivers/net/cassini.c
parent[PKTGEN]: Replacing with (compare|is_zero)_ether_addr() and ETH_ALEN (diff)
downloadlinux-dev-64af4c13622511257daba762b32d9d20f2d0c4b5.tar.xz
linux-dev-64af4c13622511257daba762b32d9d20f2d0c4b5.zip
[CASSINI]: Fix printk warning.
drivers/net/cassini.c:1930: warning: long unsigned int format, different type arg (arg 4) Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/cassini.c')
-rw-r--r--drivers/net/cassini.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/cassini.c b/drivers/net/cassini.c
index 1f7ca453bb4a..dde631f8f685 100644
--- a/drivers/net/cassini.c
+++ b/drivers/net/cassini.c
@@ -1925,8 +1925,8 @@ static void cas_tx(struct net_device *dev, struct cas *cp,
u64 compwb = le64_to_cpu(cp->init_block->tx_compwb);
#endif
if (netif_msg_intr(cp))
- printk(KERN_DEBUG "%s: tx interrupt, status: 0x%x, %lx\n",
- cp->dev->name, status, compwb);
+ printk(KERN_DEBUG "%s: tx interrupt, status: 0x%x, %llx\n",
+ cp->dev->name, status, (unsigned long long)compwb);
/* process all the rings */
for (ring = 0; ring < N_TX_RINGS; ring++) {
#ifdef USE_TX_COMPWB