diff options
author | Stefan Svinciak <xsvinc1@fi.muni.cz> | 2017-02-15 17:04:26 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-02-16 10:24:52 -0800 |
commit | 614dd644cbacb6a0ad0f1f746e75ec3887ed18bb (patch) | |
tree | 8826c073d8e88518c09494bf5fded98a4bd9c949 /drivers/staging | |
parent | dfbfa05210f4734990fd82e832759dc6e6ab038a (diff) | |
download | linux-stable-614dd644cbacb6a0ad0f1f746e75ec3887ed18bb.tar.gz linux-stable-614dd644cbacb6a0ad0f1f746e75ec3887ed18bb.tar.bz2 linux-stable-614dd644cbacb6a0ad0f1f746e75ec3887ed18bb.zip |
staging: visorbus, replace init_timer with setup_timer
Newer version is more readable and needs less changes if/when
timer_struct is to be changed.
Signed-off-by: Stefan Svinciak <xsvinc1@fi.muni.cz>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: David Kershner <david.kershner@unisys.com>
Cc: <sparmaintainer@unisys.com>
Acked-by: David Kershner <david.kershner@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/unisys/visorbus/visorbus_main.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/staging/unisys/visorbus/visorbus_main.c b/drivers/staging/unisys/visorbus/visorbus_main.c index aea1aa262b28..55f29ae8e015 100644 --- a/drivers/staging/unisys/visorbus/visorbus_main.c +++ b/drivers/staging/unisys/visorbus/visorbus_main.c @@ -623,9 +623,7 @@ create_visor_device(struct visor_device *dev) dev->device.release = visorbus_release_device; /* keep a reference just for us (now 2) */ get_device(&dev->device); - init_timer(&dev->timer); - dev->timer.data = (unsigned long)(dev); - dev->timer.function = dev_periodic_work; + setup_timer(&dev->timer, dev_periodic_work, (unsigned long)dev); /* * bus_id must be a unique name with respect to this bus TYPE |