Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1736862
| From | Allen Pais <allen.lkml@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 21/64] drivers: net: sun: cassini: use setup_timer() helper. |
| Date | 2017-09-21 19:10 +0200 |
| Message-ID | <usd98-3OI-9@gated-at.bofh.it> (permalink) |
| References | <usd97-3OI-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Use setup_timer function instead of initializing timer with the
function and data fields.
Signed-off-by: Allen Pais <allen.lkml@gmail.com>
---
drivers/net/ethernet/sun/cassini.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/net/ethernet/sun/cassini.c b/drivers/net/ethernet/sun/cassini.c
index 382993c..a74d78f 100644
--- a/drivers/net/ethernet/sun/cassini.c
+++ b/drivers/net/ethernet/sun/cassini.c
@@ -5039,10 +5039,7 @@ static int cas_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
spin_lock_init(&cp->stat_lock[N_TX_RINGS]);
mutex_init(&cp->pm_mutex);
- init_timer(&cp->link_timer);
- cp->link_timer.function = cas_link_timer;
- cp->link_timer.data = (unsigned long) cp;
-
+ setup_timer(&cp->link_timer, cas_link_timer, (unsigned long)cp);
#if 1
/* Just in case the implementation of atomic operations
* change so that an explicit initialization is necessary.
--
2.7.4
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 21/64] drivers: net: sun: cassini: use setup_timer() helper. Allen Pais <allen.lkml@gmail.com> - 2017-09-21 19:10 +0200
csiph-web