[IRDA]: fix printk format

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 <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Randy Dunlap and committed by David S. Miller 5f021217 17200811

+1 -1
+1 -1
drivers/net/irda/irport.c
··· 509 IRDA_DEBUG(0, "%s(), iir=%02x, lsr=%02x, iobase=%#x\n", 510 __FUNCTION__, iir, lsr, iobase); 511 512 - IRDA_DEBUG(0, "%s(), transmitting=%d, remain=%d, done=%d\n", 513 __FUNCTION__, self->transmitting, self->tx_buff.len, 514 self->tx_buff.data - self->tx_buff.head); 515
··· 509 IRDA_DEBUG(0, "%s(), iir=%02x, lsr=%02x, iobase=%#x\n", 510 __FUNCTION__, iir, lsr, iobase); 511 512 + IRDA_DEBUG(0, "%s(), transmitting=%d, remain=%d, done=%td\n", 513 __FUNCTION__, self->transmitting, self->tx_buff.len, 514 self->tx_buff.data - self->tx_buff.head); 515