[IRDA]: fix printk format
authorRandy Dunlap <[email protected]>
Fri, 29 Jun 2007 05:40:23 +0000 (22:40 -0700)
committerDavid S. Miller <[email protected]>
Fri, 29 Jun 2007 05:40:23 +0000 (22:40 -0700)
Fix printk format warning:
drivers/net/irda/irport.c:512: warning: format '%d' expects type 'int', but argument 5 has type 'long int'

Signed-off-by: Randy Dunlap <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/irda/irport.c

index 3098960dc2a134ce97df39c125a0ba2492c01b75..3078c419cb02fc7f6abe2534108c3976e127b625 100644 (file)
@@ -509,7 +509,7 @@ static void irport_timeout(struct net_device *dev)
        IRDA_DEBUG(0, "%s(), iir=%02x, lsr=%02x, iobase=%#x\n", 
                   __FUNCTION__, iir, lsr, iobase);
 
-       IRDA_DEBUG(0, "%s(), transmitting=%d, remain=%d, done=%d\n", 
+       IRDA_DEBUG(0, "%s(), transmitting=%d, remain=%d, done=%td\n",
                   __FUNCTION__, self->transmitting, self->tx_buff.len,
                   self->tx_buff.data - self->tx_buff.head);