All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iphase: Fix 64bit warning
@ 2008-05-02 13:20 Alan Cox
  0 siblings, 0 replies; only message in thread
From: Alan Cox @ 2008-05-02 13:20 UTC (permalink / raw)
  To: akpm, netdev

Time is unsigned long (except when you are in a hurry) so we need to store
rx_tmp_jif in the right sized object.

Signed-off-by: Alan Cox <alan@redhat.com>

diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.25-mm1/drivers/atm/iphase.h linux-2.6.25-mm1/drivers/atm/iphase.h
--- linux.vanilla-2.6.25-mm1/drivers/atm/iphase.h	2008-04-28 11:35:43.000000000 +0100
+++ linux-2.6.25-mm1/drivers/atm/iphase.h	2008-05-02 14:16:27.000000000 +0100
@@ -1025,7 +1025,8 @@
         spinlock_t rx_lock, misc_lock;
 	struct atm_vcc **rx_open;	/* list of all open VCs */  
         u16 num_rx_desc, rx_buf_sz, rxing;
-        u32 rx_pkt_ram, rx_tmp_cnt, rx_tmp_jif;
+        u32 rx_pkt_ram, rx_tmp_cnt;
+        unsigned long rx_tmp_jif;
         void __iomem *RX_DESC_BASE_ADDR;
         u32 drop_rxpkt, drop_rxcell, rx_cell_cnt, rx_pkt_cnt;
 	struct atm_dev *next_board;	/* other iphase devices */  

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-05-02 13:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-02 13:20 [PATCH] iphase: Fix 64bit warning Alan Cox

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.