* [PATCH] fix warning and small bug in cassini driver
@ 2005-10-17 18:24 Jesper Juhl
2005-10-18 5:34 ` Alexey Dobriyan
0 siblings, 1 reply; 2+ messages in thread
From: Jesper Juhl @ 2005-10-17 18:24 UTC (permalink / raw)
To: Adrian Sun; +Cc: linux-kernel
Hi,
A small patch for you :)
This patch fixes the following compile warning:
drivers/net/cassini.c:1930: warning: long unsigned int format, different type arg (arg 4)
While fixing the warning I noticed that if USE_TX_COMPWB is not defined, then
the printk will be in sore trouble since compwb won't be around. Fixed that as
well. Perhaps a little ugly, but better than a bug IMHO.
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
---
drivers/net/cassini.c | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
--- linux-2.6.14-rc4-mm1-orig/drivers/net/cassini.c 2005-10-11 22:41:10.000000000 +0200
+++ linux-2.6.14-rc4-mm1/drivers/net/cassini.c 2005-10-17 20:16:51.000000000 +0200
@@ -1925,9 +1925,14 @@ static void cas_tx(struct net_device *de
#ifdef USE_TX_COMPWB
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);
+ if (netif_msg_intr(cp)) {
+ printk(KERN_DEBUG "%s: tx interrupt, status: 0x%x",
+ cp->dev->name, status);
+#ifdef USE_TX_COMPWB
+ printk(", %llx", compwb);
+#endif
+ printk("\n");
+ }
/* process all the rings */
for (ring = 0; ring < N_TX_RINGS; ring++) {
#ifdef USE_TX_COMPWB
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] fix warning and small bug in cassini driver
2005-10-17 18:24 [PATCH] fix warning and small bug in cassini driver Jesper Juhl
@ 2005-10-18 5:34 ` Alexey Dobriyan
0 siblings, 0 replies; 2+ messages in thread
From: Alexey Dobriyan @ 2005-10-18 5:34 UTC (permalink / raw)
To: Jesper Juhl; +Cc: Adrian Sun, linux-kernel
On 10/17/05, Jesper Juhl <jesper.juhl@gmail.com> wrote:
> drivers/net/cassini.c:1930: warning: long unsigned int format, different type arg (arg 4)
> u64 compwb = le64_to_cpu(cp->init_block->tx_compwb);
> - printk(KERN_DEBUG "%s: tx interrupt, status: 0x%x, %lx\n",
> + printk(", %llx", compwb);
You've added similar warning on alpha, sparc64, ...
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-10-18 5:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-10-17 18:24 [PATCH] fix warning and small bug in cassini driver Jesper Juhl
2005-10-18 5:34 ` Alexey Dobriyan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome