aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/seeq/ether3.h
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2017-10-16 17:29:29 -0700
committerDavid S. Miller <davem@davemloft.net>2017-10-18 12:40:26 +0100
commit6fd9c53f71862a4797b7ed8a5de80e2c64829f56 (patch)
tree165b5fa3c88b0c45c9bbc94a19cee6b99d0d7e12 /drivers/net/ethernet/seeq/ether3.h
parentnet: ethernet: sun: Convert timers to use timer_setup() (diff)
downloadlinux-dev-6fd9c53f71862a4797b7ed8a5de80e2c64829f56.tar.xz
linux-dev-6fd9c53f71862a4797b7ed8a5de80e2c64829f56.zip
net: seeq: Convert timers to use timer_setup()
In preparation for unconditionally passing the struct timer_list pointer to all timer callbacks, switch to using the new timer_setup() and from_timer() to pass the timer pointer explicitly. Cc: Russell King <linux@armlinux.org.uk> Cc: linux-arm-kernel@lists.infradead.org Cc: netdev@vger.kernel.org Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--drivers/net/ethernet/seeq/ether3.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/seeq/ether3.h b/drivers/net/ethernet/seeq/ether3.h
index 2db63b08bdf3..ea2ba286e665 100644
--- a/drivers/net/ethernet/seeq/ether3.h
+++ b/drivers/net/ethernet/seeq/ether3.h
@@ -165,6 +165,7 @@ struct dev_priv {
unsigned char tx_tail; /* buffer nr of transmitting packet */
unsigned int rx_head; /* address to fetch next packet from */
struct timer_list timer;
+ net_device *dev;
int broken; /* 0 = ok, 1 = something went wrong */
};