diff options
author | Bart Van Assche <[email protected]> | 2017-08-17 13:13:16 -0700 |
---|---|---|
committer | Jens Axboe <[email protected]> | 2017-08-18 08:45:29 -0600 |
commit | feb8971982beae41507a43fee609c59445147cf5 (patch) | |
tree | 7b8619fcbc6c3d8617493a8096e4a8b7b1cc7f63 | |
parent | 06f824c409487ef55ab4c1fdb922734691318344 (diff) |
skd: Remove a redundant init_timer() call
Since setup_timer() invokes init_timer(), invoking init_timer()
just before setup_timer() is redundant. Hence remove the init_timer()
call.
Signed-off-by: Bart Van Assche <[email protected]>
Cc: Christoph Hellwig <[email protected]>
Cc: Hannes Reinecke <[email protected]>
Cc: Johannes Thumshirn <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r-- | drivers/block/skd_main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/block/skd_main.c b/drivers/block/skd_main.c index 62e06e35ddf5..71158e8b8a2b 100644 --- a/drivers/block/skd_main.c +++ b/drivers/block/skd_main.c @@ -1057,7 +1057,6 @@ static int skd_start_timer(struct skd_device *skdev) { int rc; - init_timer(&skdev->timer); setup_timer(&skdev->timer, skd_timer_tick, (ulong)skdev); rc = mod_timer(&skdev->timer, (jiffies + HZ)); |